56 面向对象this和super的区别和应用
Posted JAVA笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了56 面向对象this和super的区别和应用相关的知识,希望对你有一定的参考价值。
this.成员变量 可以调用本类和父类的成员变量,当本类没有情况下调用父类
super.成员变量 调用父类的成员变量
1 class Demo1_Extends{ 2 public static void main(String[] args) { 3 Dog d = new Dog(); 4 d.print(); 5 } 6 } 7 8 class Animals{ 9 int num1 = 10; 10 int num2 = 20; 11 } 12 13 class Dog extends Animals{ 14 int num2 = 30; 15 16 public void print(){ 17 System.out.println(this.num2); 18 System.out.println(this.num1); 19 System.out.println(super.num2); 20 } 21 22 }
以上是关于56 面向对象this和super的区别和应用的主要内容,如果未能解决你的问题,请参考以下文章
Java基础8---面向对象代码块和继承和this和super和重写和重载和final
Java基础8---面向对象代码块和继承和this和super和重写和重载和final