您好,登錄后才能下訂單哦!
本篇內容介紹了“Java的默認和靜態方法簡單介紹”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
Java新增默認方法有啥用
官方解答:默認方法允許您添加新的功能到現有庫的接口中,并能確保與采用舊版本接口編寫的代碼的二進制兼容性。這個光看枯燥的介紹好像很難理解,舉個簡單的例子。假設有一個很大很大的項目,一個接口被很多很多的類所實現,大家都平安無事平穩地運行著。突然有一天,出現了一個小小地問題,或者說有一個更好的優化方案,需要在這些實現類去增加。在默認方法出現之前,只有抽象方法,且需要在實現類中給出具體定義才能操作,那豈不是只能兩眼一閉,直接從早干到晚地添加啦。
但是,默認方法地出現允許在接口中給出方法的具體實現,且實現類中能夠自動實現默認方法,我只需要將這個優化放在接口的默認方法里面,就能完成對所有實現類的優化啦。當然,純屬個人理解,如果我的例子有不恰當的地方,歡迎指正哦。
package com.my.pac21;/** * @auther Summerday */interface Closable { void close(); //假設是新增的默認方法 default void makeSound() { System.out.println("peng!"); }}interface Openable { default void makeSound() { System.out.println("peng!"); }}class Window implements Closable { @Override public void close() { System.out.println("Window.close"); }}public class Door implements Closable, Openable { @Override public void close() { System.out.println("Door.close"); } //兩個接口中包含同名的方法,需要重寫,指定一個 @Override public void makeSound() { System.out.println("need to override default methods"); } public static void main(String[] args) { Closable cw = new Window(); Closable cd = new Door(); cw.close();//Window.close cd.close();//Door.close //實現默認方法 cw.makeSound();//peng! cd.makeSound();//need to override default methods }}
Java新增的靜態方法有啥用
默認方法和靜態方法的在接口的出現讓接口失去“全是抽象方法”的特性,在探究完新增的默認方法之后,我們該對靜態方法下手啦。開始瘋狂查找資料。。。
Before Java 8 made it possible to declare static methods in interfaces, it was common practice to place these methods in companion utility classes. For example, the java.util.Collections class is a companion to the java.util.Collection interface, and declares static methods that would be more appropriate in the relevant Java Collections Framework interfaces. You no longer need to provide your own companion utility classes. Instead, you can place static methods in the appropriate interfaces, which is a good habit to cultivate.
這個是我在stack overflow上找到的答案,什么意思呢,在沒有新增靜態方法之前,我們如果想讓一些固定的操作在接口中出現,就必須定義一個和接口配套的實現類。而接口中靜態方法的出現,可以直接通過接口調用靜態方法。
package com.my.pac21;/** * @auther Summerday */public class Test { public static void main(String[] args) { int val1 = 5; int val2 = 6; //通過創建實現類的對象 Countable b = new CountableCompanion(); System.out.println(b.getNum(val1, val2)); //直接通過接口調用 Countable.getMul(val1,val2); }}interface Countable{ //普通抽象方法 int getNum(int a,int b); //靜態方法 static int getMul(int a,int b){ return a*b; }}//實現接口的實現類class CountableCompanion implements Countable{ @Override public int getNum(int a,int b) { return a+b; }}
這是一個我自認為還比較幼稚的例子,僅供理解。
普通抽象方法的情況:我在接口中定義了一個抽象方法,而后我又定義了實現該方法的實現類,最后通過創建實現類的實例來調用該方法,最后算得兩值之和。可以想象,在實際中,如果相同性質的方法想要在多個實現類中實現,這種做法是比較麻煩的。
靜態方法的情況:就很直接地在接口中定義靜態方法,且可以被接口直接調用,不需要再定義與其配套的實現類,多舒服哦。
“Java的默認和靜態方法簡單介紹”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。