黑马程序员技术交流社区
标题:
关于super和this
[打印本页]
作者:
孙宁洋
时间:
2013-5-31 22:23
标题:
关于super和this
class person
{
String name;
int age;
public person(String name,int age)
{
this.name=name;//this指当前类
this.age=age;
}
}
class student extends person
{
public student()
{
//int i=0;
super("zhangsan",30);//调用父类的构造方法。必须放在第一行,不然报错
}
}
class TT {
public static void main(String[] args) {
student s=new student();
System.out.println(s.name+“-------"+s.age);
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2