super注意点:
1.super调用父类的构造方法,必须在构造方法的第一个
2.super 必须只能出现在子类的方法或者构造方法中!
3.super和this 不能同时调用构造方法!
4.私有的东西不能被直接继承,只能被间接继承
(创建一个构造函数的快捷键:Alt+int)
Vs this:
代表的对象不同:
this: 本身调用者这个对象
super: 代表父类对象的应用
前提
this: 没有继承也可以使用
super: 只能继承条件才可以使用
构造方法:
this():本类的构造
super():父类的构造!
代码案例:
java
//父类:
public class Person {
protected String name = "qingchen";
public void print(){
System.out.println("Person");
}
}
//子类
public class Student extends Person {
private String name = "chen";
public void print(){
System.out.println("Student");
}
public void test1(){
print();//Student
this.print();//Student
super.print();//Person
}
public void test(String name){
System.out.println(name);
System.out.println(this.name);
System.out.println(super.name);//super指向父类
}
}
//输出:
public class Application {
Student student =new Student();
student.test("清宸");
student.test1();
}
}