# 看題目是不是很繞,這個我也不知道怎么才能更簡單的表達了
創(chuàng)新互聯(lián)建站主要從事網(wǎng)站建設(shè)、成都網(wǎng)站制作、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)濱州,十載網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220
# 先看代碼:
public class Common { public static void main(String[] args) { Sub sub = new Sub(); sub.testSub(); } } class Parent { protected boolean test() { throw new RuntimeException(); } protected void testParent() { if (test()) { System.out.println(this.getClass().getName()); } } } class Sub extends Parent { public void testSub() { super.testParent(); } @Override public boolean test() { return true; } }
# 上面的代碼的輸出結(jié)果是:
com.qq.demo.common.Sub
# 大致流程是 main 中調(diào)用子類的 testSub()方法 -- testSub()方法中調(diào)用父類的testParent() 方法 -- testParent() 方法調(diào)用test()方法;需要注意的是test()方法在父類和子類中都存在,子類重寫了父類的test()方法;
以上就是本次介紹的全部知識點內(nèi)容,感謝大家的閱讀和對創(chuàng)新互聯(lián)的支持。