Java 编程 求助 …………!!!…………………………

2025-04-04 07:11:24
推荐回答(1个)
回答1:

package cn.example;

public class person {
private String name;
private int age;

public person() {
super();
}
/**
* 自我介绍
*/
public void intuduce(){
System.out.println("姓名:"+this.getName()+"\t\t年龄:"+this.getAge());
}

public person(String name, int age) {
super();
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}

}