前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >java继承当中都有一些什么样的构造函数规则?

java继承当中都有一些什么样的构造函数规则?

作者头像
马克java社区
修改2021-03-26 10:12:18
修改2021-03-26 10:12:18
3130
举报
文章被收录于专栏:java大数据java大数据

6.继承当中的构造函数规则  

马克-to-win:继承当中的构造函数规则貌似复杂: 记住我给你的以下几条口诀, 你高枕无忧。1)如果你在某类中写了带参构造函数,系统就不会再为你在那类中自动添加无参构造函数了。2)如你没有写无参构造函数,且机器也不会为你自动添加这个无参构造函 数时(因为你已经有带参构造函数了),你不可以主动调无参构造函数。3)子类的构造函数中不能人为的写两个super。4)构造函数中要是你人工想写super,super必须为第一句话。构造函数中要是你不写super,机器会为你加无参数super().马克-to-win:5)既然super必须为第一句话,创建子类对象时,构造函数调用次序为,先最低的超类直到最高的子类。

例1.6.1---

class AAAMark_to_win {

    AAAMark_to_win() {

        System.out.println("Inside AAAMark_to_win's constructor.");

    }

    AAAMark_to_win(int j) {

        System.out.println(j);

    }

}

class BBB extends AAAMark_to_win {

    BBB() {

        super(3);

        System.out.println("Inside BBB's constructor.");

    }

    BBB(int i) {

        System.out.println(i);

    }

}

class C extends BBB {

    C(int a) {

/*马克-to-win: super必须是第一句话,彻底不写也行。因为机器会为你自动加。

super must be the first statement. without it, also ok.the result

is exactly the same as right now, because machine will add automatically for you. but if you have it, it must be the first statement.

*/      

//        super();//注意这上下两句,只能保留一个

        super(1);

        System.out.println("Inside C's constructor.");

    }

}

public class Test {

    public static void main(String args[]) {

/*马克-to-win: 这里你不能写成C(),即使不谈继承,也一样。因为你已经有C(int a) {} ,系统不会为你自动添加C() {} 。

 

here you can not write as new C(); even without inheritance,still, you can not write as new C(); because if you have C(int a) {} already, machine will not automatically add C() {} for you.*/

        C c = new C(5);

    }

}

 

更多请见:https://blog.csdn.net/qq_44639795/article/details/103117875

本文系转载,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文系转载前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档