本帖最后由 张龙跃 于 2013-4-27 00:53 编辑
public void setName()//设置名字
{
this.name = name;
}
public void setAge()//设置年纪
{
this.age = age;
}
public void cj()//设置成绩
{
this.cj = cj;
}
public String getName()//获取name
{
return name;
}
public int getAge()//获取age
{
return age;
}
public double getCj()//获取成绩
{
return cj;
}
搞不清楚SET GET什么意思
|