java介面重寫(翻譯自Java Tutorials)

來源:互聯網
上載者:User

原文出自 http://www.cnblogs.com/ggjucheng/archive/2012/12/04/2802311.html

英文出自 http://docs.oracle.com/javase/tutorial/java/IandI/nogrow.html

考慮你已經開發了一個名稱為DoIt的介面

public interface DoIt {   void doSomething(int i, double x);   int doSomethingElse(String s);}

假設最近你要為DoIt添加第三個方法,所以介面變為:

public interface DoIt {   void doSomething(int i, double x);   int doSomethingElse(String s);   boolean didItWork(int i, double x, String s);   }

 

如果做個這個改變,所有繼承老介面DoIt的類都要出錯,因為他們沒有全部實現這個介面。依靠這個介面的程式員會大聲抗議。

嘗試讓你的介面從一開始就完全預見到的所有用途。這往往是不可能的,你可能需要建立更多的介面。例如,可以建立一個DoItPlus的介面擴充DoIt

public interface DoItPlus extends DoIt {   boolean didItWork(int i, double x, String s);   }

現在,你的代碼的使用者可以選擇繼續使用舊的介面或升級到新的介面。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.