最好就习题的详细,谢谢!
super(……)调动父类带参数的构造方法
this(……)调动本类带参数的构造方法
class a{
String name,sex;
a(){
}
a(String name,String sex){
this.name=name;
this.sex=sex;
}
void getMessage(){ //这是父类的方法
System.out.print(name);
System.out.println(sex);
System.out.println();
}
}
class b extends a{
int age;
b(String name,String sex){
super(name,sex); //这里又调用蓝色部份(即父类)
}
b(String name,String sex,int age){
this(name,sex); //这里是调用红色部份(即当前类)本来这里直接用super()调用父类就可以了主要是为了让你看看this的效果所以绕了一个圈子
this.age=age;
super.getMessage(); //这里调用绿色总价(即父类的方法)
}
void getMessage(){ //这是本类的方法
System.out.println(name);
System.out.println(sex);
System.out.println(age);
}
}
public class c{
public static void main(String args[]){
b b1 = new b("张三","男",25);
b1.getMessage();
}
}
//super它的作用就是不用再输入this.name=name this.sex=sex因为他在a类里面多写出来了所以用super这个调用就可以了。要不然,还要在b里面输入this.name=name this.sex=sex. 这样就避免了重复输入
[此贴子已经被作者于2007-4-7 16:48:22编辑过]