码迷,mamicode.com
首页 > 编程语言 > 详细

Java笔记:继承

时间:2018-02-11 22:43:57      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:oid   blog   关键字   super关键字   pre   成员   system   void   super   

一、超类引用

class Plain {
    int length;
    int width;

    Plain(int length, int width) {
        this.length = length;
        this.width = width;
    }
}

class Stereo extends Plain {
    int height;

    Stereo(int length, int width, int height) {
        super(length, width);
        this.height = height;
    }
}

class Solution {
    public static void main(String[] args) {
        Plain plain = new Stereo(1, 2, 3);
        System.out.println(plain.length + " " + plain.width);
    }
}

上述实例化合法,但超类引用无法使用子类独有的成员或方法。子类可使用super关键字调用超类的构造方法来构造继承得到的部分。类似this关键字,super是超类的引用,那么使用super关键字自然可以调用超类的其他方法。

Java笔记:继承

标签:oid   blog   关键字   super关键字   pre   成员   system   void   super   

原文地址:https://www.cnblogs.com/arseneyao/p/8443217.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!