this对象调用父类的方法
Posted cracker13
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了this对象调用父类的方法相关的知识,希望对你有一定的参考价值。
一.当子类没有定义方法时,this对象会寻找父类中的方法
二.
package com.cracker; class Parent{ public void action() { } public void sleep() { System.out.println("父类:嗷呜"); } } class Child extends Parent{ @Override public void action() { this.sleep(); } } public class Demo1 { public static void main(String[] args) { Parent child = new Child(); child.action(); } }
结果:
父类:嗷呜
如果子类中重写了sleep()方法,this.sleep()则调用重写的sleep()方法
以上是关于this对象调用父类的方法的主要内容,如果未能解决你的问题,请参考以下文章