父类
public class DW {
/* public DW(String name) {
System.out.println("父类有参");
}*/
public DW() {
System.out.println("父类无参");
}
protected String name="动物";
public void print(){
System.out.println("Person");
}
}
子类
public class /*子类名*/ extends /*父类名*/ {
//调用父类的有参
//super("name")
public /*子类名*/() {
System.out.println("子类无参");
}
private String name="狗";
public void print(){
System.out.println("Student");
}
public void test1(){
print();
this.print();
super.print();
System.out.println("--------");
}
public void test2(String name){
System.out.println(name);
System.out.println(this.name);
System.out.println(super.name);
System.out.println("--------");
}
}
测试类与总结
public class C {
public static void main(String[] args) {
/*子类名*/ S1 = new /*子类名*/();
S1.test2("G");
S1.test1();
/*子类名*/ S2 = new /*子类名*/();
}
}
/*super注意点:
1.super调用父类的构造方法(无参默认在第一行),而且必须在第一行。
2.必须只能出现在子类的方法和构造方法里
3.super和this不能同时调用方法
VS this
代表的对象不同:
this:本身调用者这个对象
super:代表父类对象的应用
前提
this:没有继承也可以使用
super:只能在继承条件才可以使用
构造方法
this():本类的构造
super():父类的构造*/