public class Exe5_8{
class Person{
private String name;
private int age;
public void tell(){
System.out.println("姓名"+getName()+","+"年龄"+getAge());
}
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;
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Person person=new Person(); //系统提示这里错误,为什么啊
person.setName("wuliehao");
person.setAge(18);
}
}
皓婆子
qq_如朝日似暮月_0
相关分类