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;
}
}