上記の投稿とコメントによると、これは解決するためのかなり基本的な問題であるため、Javaをもう少し詳しく読むべきです。しかし、ここであなたが学生に何をする必要があるかに応じて、あなたは正しい方向にプッシュを与えるために少しのコードスニペットです:
//The class name and visibility (also static or non-static if relevant)
public class Student {
//Variables, aka the data you want to store
String name;
double GPA;
boolean honorStudent;
//A setter method, setting a specific variable to a given value
public void setName(String input) {
name = input;
}
//A getter method, returning the data you're looking for
public String getName() {
return name;
}
//There would most likely be getters and setters for all
//of the variables mentioned above
//A lot of the time constructors are used to automatically
//set these variables when an instance of the class is created
public Student() {
name = "My name!";
GPA = 3.5;
honorStudent = true;
}
//And of course if you want to make new students with custom
//data associated with them, you can overload the constructor
public Student(String newName, double newGPA, boolean newHonorStudent) {
name = newName;
GPA = newGPA;
honorStudent = newHonorStudent;
}
}
さらに基本的なJavaチュートリアルを読んでみてください。この情報は10億個の場所で利用できます – sjr
Javaを学ぶ必要があります。 – SLaks
あなた自身の質問でここでやっていませんか? http://stackoverflow.com/questions/10003321/array-setting-length-and-storing-information –