Java Super详解
super注意点:
- super 调用父类的构造方法,必须在构造方法的第一个
- super 必须只能出现在子类的方法或者构造方法中
- super 和 this 不能同时调用构造方法
与 this 的区别:
- 代表的对象不同:
- this:本身的调用者这个对象
- super:代表父类对象的引用
- 前提:
- this:没有继承也可以使用
- super:只能在继承条件下使用
- 构造方法
- this():本类的构造
- super():父类的构造
Person 父类
package com.oop.demo6;
public class Person {
protected String name = "小名";
public Person() {
System.out.println("Person无参执行了");
}
public void print(){
System.out.println("Person");
}
}
Student 子类
package com.oop.demo6;
public class Student extends Person{
private String name = "xiaoming";
public Student(){
// 隐藏代码:调用了父类的无参构造
// 调用父类的构造器,必须要在子类构造器的第一行
super();
// this()
System.out.println("Student无参执行了");
}
public void print(){
System.out.println("Student");
}
public void test(String name){
System.out.println(name); // xm
System.out.println(this.name); // xiaoming
System.out.println(super.name); // 小名
}
// 私有的东西无法被继承
public void test1(){
print(); // Student
this.print(); // Student
super.print(); // Person
}
}
main
package com.oop.demo6;
public class Application {
public static void main(String[] args) {
Student student = new Student();
student.test("xm");
student.test1();
}
}