博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
super 关键字
阅读量:5253 次
发布时间:2019-06-14

本文共 1093 字,大约阅读时间需要 3 分钟。

super 关键字

class Grandparent {    public void Print() {        System.out.println("Grandparent's Print()");    }}class Parent extends Grandparent {    public void Print() {        System.out.println("Parent's Print()");    }}class Child extends Parent {    public void Print() {        super.super.Print();        System.out.println("Child's Print()");    }}public class Main {    public static void main(String[] args) {        Child c = new Child();        c.Print();    }}

Output: Compiler Error

class Grandparent {    public void Print() {        System.out.println("Grandparent's Print()");    }}class Parent extends Grandparent {    public void Print() {        super.Print();        System.out.println("Parent's Print()");    }}class Child extends Parent {    public void Print() {        super.Print();        System.out.println("Child's Print()");    }}public class Main {    public static void main(String[] args) {        Child c = new Child();        c.Print();    }}

Output:

Grandparent's Print()
Parent's Print()
Child's Print()

转载于:https://www.cnblogs.com/hglibin/p/11241123.html

你可能感兴趣的文章
Yii的常用URL和渲染方法
查看>>
C# in depth (第九章 Lambda表达式和表达式树)
查看>>
mysql 5.6.33 重置密码后报错
查看>>
python常用绘图软件包记录
查看>>
GET请求与POST请求区别
查看>>
DML操作对索引的影响
查看>>
MYSQL集群的搭建
查看>>
【批处理学习笔记】第十课:批处理符号(3)
查看>>
CTF---Web入门第十四题 忘记密码了
查看>>
javascript对象和函数的几种常见写法
查看>>
FutureTask用法及解析
查看>>
开启elastic search 脚本
查看>>
ListNet 算法简介
查看>>
.net Post XML格式数据
查看>>
Properties集合的常用操作
查看>>
T-SQL 分页存储过程
查看>>
ecshop 商品详情页面显示商品简单描述
查看>>
ActionContext实现原理
查看>>
亚马逊平淡无奇的成功秘诀
查看>>
codeforces 798D Mike and distribution
查看>>