java三大特性之一:继承(什么是super)

super注意点:
1.super调用父类的构造方法,必须在构造方法的第一个
2.super 必须只能出现在子类的方法或者构造方法中
3.super和this不能同时调用构造方法
VS this:
代表的对象不同:
this:本身调用者这个对象
super:代表分类对象的应用
前提:this:有没有继承都可以使用
super:只能在继承条件才可以使用
构造方法:
this():本类的构造
super():父类的构造
Person类:
  public class Person {
    String name="我是父类";
public void study(){
System.out.println("我是父类");
}

public Person() {
System.out.println("我是父类的构造方法");
}
}
Student类:
  
  public class Student extends Person{
   public Student() {
System.out.println("我是当前类的构造方法");
   }
    String name="我是子类";
     public void study(){
   System.out.println("我是当前类");
   }
   public void test(String name){
System.out.println(name);// 小明
System.out.println(this.name);//我是子类
System.out.println(super.name);//我是父类
   }
  }
Application类:
  
public class Application {
public static void main(String[] args) {

Student student = new Student();
// student.test("小明");
}

}
 
上一篇:Super详解


下一篇:06 - 面向对象编程(中级部分一)