您好,登錄后才能下訂單哦!
這篇“java動態綁定方法如何用”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“java動態綁定方法如何用”文章吧。
用法
1、程序在編譯的時候調用的其實是父類的eat方法,但是在運行時運行的則是子類的eat方法,運行期間發生了綁定。
2、使用前題,先向上轉型,通過父類引用來調用父類和子類同名的覆蓋方法
實例
package chapeter04; class Test { public Test() { } public void setName(String n) { this.name=n; System.out.println("在父類中"); } public String getName() { return this.name; } private String name; } public class Sample4_12 extends Test { public void setArea(String a) { this.area=a; } public String getArea() { return this.area; } public static void main(String[] args) { // TODO Auto-generated method stub Sample4_12 child = new Sample4_12(); Test test []=new Test[2]; test[0]=child; test[0].setName("silence"); test[1]=new Test(); } private String area; }
以上就是關于“java動態綁定方法如何用”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。