一个让98%的Java程序员犯难的偏门问题
时间:2007-12-27 来源:不详 作者:林子
public Student extends Person
{
String school = ”it315”;// 显式初始化
……
}
将“it315”赋值给school成员变量。
(6)执行当前构造方法的方法体中的程序代码,如:
public Student extends Person
{
public Student(String name,int age,String school)
{
super(name,age);
this.school = school;
}
}
文章评论
共有位Admini5网友发表了评论 查看完整内容