super注意点:
1.super调用父类的构造方法,必须在构造方法的第一个
2.super必须只能出现在子类的方法或者构造方法中!
3.super和this不能同时调用构造方法!
Vs this:
代表的对象不同:
this:本身调用者这个对象
super:代表父类对象的应用
前提
this:没有继承也可以使用
super:只能在继承条件才可以使用
构造方法
this();本类的构造
super():父类的构造!
/**
* @Description super详解
*/
package com.oop;
import com.oop.demo05.Student;
public class Application {
public static void main(String[] args) {
Student student = new Student();
//student.test("AI福");
//student.test1();
}
}
/**
* @Description super详解
*/
package com.oop.demo05;
//在java中,所有的类,都默认直接或者间接继承object类
//Person 人:父类
public class Person /*extends Object*/{
public Person(String name) {
System.out.println("Person无参执行了");
}
protected String name = "Ai福";
//私有的的东西无法被继承!
public void print(){
System.out.println("Person");
}
}
/**
* @Description super详解
*/
package com.oop.demo05;
//学生 is 人:派生类,子类
//子类继承了父类,就会拥有父类的全部方法!
public class Student extends Person{
public Student() {
//隐藏代码:super() 调用了父类的无参构造
super("name");//调用父类的构造器,必须要在子类构造器的第一行
System.out.println("Student无参执行了");
}
private String name = "ai福";
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); //AI福
System.out.println(this.name); //ai福
System.out.println(super.name); //Ai福
}
}
原文地址:https://blog.csdn.net/my_lucky_bird/article/details/134841646
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_49875.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。