逆光飛行的玉珮

导航

2019年1月30日 #

[Java] 方法 -- 繼承關係

摘要: public class test { void show() { System.out.println("父類別"); } } public class test2 extends test{ void show() { System.out.println("子類別"); } void Ha() { ... 阅读全文

posted @ 2019-01-30 19:16 逆光飛行的玉珮 阅读(109) 评论(0) 推荐(0) 编辑