毎回新しいメソッドを作成する必要はありません。以下に示すように、名前の付いたクラスを作成し、Person
その属性を として定義し、このName
変数にアクセスしてこの変数を設定するメソッドを作成するだけです。Age
Sex
class Person{
String Name="";
String Age="";
String Sex="";
public String getName(){
return Name;
}
public String setName(String Name){
this.Name=Name;
}
public String getAge(){
return Age;
}
public String setAge(String Age){
this.Age=Age;
}
public String getSex(){
return Name;
}
public String setName(String Sex){
this.Sex=Sex;
}
}
Person
このクラスのオブジェクトを次のように作成するだけで、このメソッドと変数にアクセスできます。
Class UsePerson{
public static void main(String ar[]){
Person p=new Person();
p.setName("ABC"); //Here You set the Name of the person
String name=p.getName(); //Here you'll get the name of Person
}
}