Super(继承核心关键词)详解
Super注意点:
1.super调用父类的构造方法,必须在构造方法的第一个
2.super只能出现在子类的方法或者构造方法中!
3.super和this 不能同时调用构造方法!(因为二者都要放在构造器的第一个无法实现)
4.super VS this:
A.代表的对象不同:
this:本身调用者这个对象
super:代表父类对象的引用
B.前提
this:没有继承也可以使用
super:只能在继承条件下才可以使用
C.构造方法
this(); 调用的是本类的构造
super();调用的是父类的构造!
Person
package com.oop.demo05;
//在Java中,所有的类,都默认直接或间接继承object
//person 人:父类
public class Person /* extends Object */ {
public Person() { //无参构造器
System.out.println("Person无参执行了");
}
protected String name = "xiaobai";
//私有的东西无法被继承 private
public void print(){
System.out.println("Person");
}
}
Student
package com.oop.demo05;
//学生 is 人:派生类,子类
//子类继承了父类,就会拥有父类的全部方法!前提修饰符都是public
public class Student extends Person {
public Student() {
//隐藏代码:默认调用了父类的无参构造
super();//调用父类的构造器,必须要在子类构造器的第一行
//上面一行即类似的隐藏代码不写也是正常的 默认调用父类的无参
System.out.println("Student无参执行了");
}
private String name = "baixiaofan";//这里用了private
public void print(){
System.out.println("Student");
}
public void test1(){
print(); //按住ctrl 点击可以看到调用的在哪里 调用的是Student的print方法
this.print(); //指代自己的print 子类的方法
super.print();//父类的print方法
}
public void test(String name){
System.out.println(name); //这个name是String name 传递的参数 白小帆
System.out.println(this.name); //Student 的name baixiaofan
System.out.println(super.name); //父类Person的name xiaobai
}
}
Application
package com.oop.demo05;
public class Application {
public static void main(String[] args) {
Student student = new Student();//new Student的时候就调用了Person的无参(先) 及Student的无参(后)
System.out.println("==============================");
student.test("白小帆");
System.out.println("==============================");
student.test1();
}
}
Application的结果:
Person无参执行了
Student无参执行了
==============================
白小帆
baixiaofan
xiaobai
==============================
Student
Student
Person
标签:Day53,name,super,Person,详解,Student,父类,Super,public
From: https://www.cnblogs.com/baixiaofan/p/17973421