您好,登錄后才能下訂單哦!
引入
JDK1.8后,接口允許定義默認方法與靜態方法,如:Iterable類中的foreach方法。
public interface Iterable<T> { /** * Returns an iterator over elements of type {@code T}. * * @return an Iterator. */ Iterator<T> iterator(); /** * Performs the given action for each element of the {@code Iterable} * until all elements have been processed or the action throws an * exception. Unless otherwise specified by the implementing class, * actions are performed in the order of iteration (if an iteration order * is specified). Exceptions thrown by the action are relayed to the * caller. * * @implSpec * <p>The default implementation behaves as if: * <pre>{@code * for (T t : this) * action.accept(t); * }</pre> * * @param action The action to be performed for each element * @throws NullPointerException if the specified action is null * @since 1.8 */ default void forEach(Consumer<? super T> action) { Objects.requireNonNull(action); for (T t : this) { action.accept(t); } } ... }
可以發現,接口越來越和抽象類相似了。
設計初衷
以往,如果想在接口中新增方法比如foreach,他的子類(比如集合類)必須全部實現這個方法,這有點不現實,增加了default方法之后,就解決了這一問題,以前接口是對行為的抽象,純設計模型,現在接口也承擔了代碼重構的一些責任,有利有弊吧.
方法沖突
一個類可以實現多個接口,也就是說有可能會發生默認方法沖突,有以下幾種情況:
1、如果接口繼承自另一個接口,這兩個接口中有相同的默認方法,則保留父接口的默認方法。
2、如果一個類實現兩個接口,其中一個是默認方法,另一個不管是默認方法還是抽象方法,都需要這個類重寫這個方法。
3、接口中的默認方法與繼承的父類中的方法沖突了,則優先選擇父類的方法,這就兼容了以前的版本,名詞叫類優先原則。
接口靜態方法
接口中的靜態方法定位就是工具方法,直接通過接口名調用。如:Comparator接口
/** * Accepts a function that extracts a sort key from a type {@code T}, and * returns a {@code Comparator<T>} that compares by that sort key using * the specified {@link Comparator}. * * <p>The returned comparator is serializable if the specified function * and comparator are both serializable. * * @apiNote * For example, to obtain a {@code Comparator} that compares {@code * Person} objects by their last name ignoring case differences, * * <pre>{@code * Comparator<Person> cmp = Comparator.comparing( * Person::getLastName, * String.CASE_INSENSITIVE_ORDER); * }</pre> * * @param <T> the type of element to be compared * @param <U> the type of the sort key * @param keyExtractor the function used to extract the sort key * @param keyComparator the {@code Comparator} used to compare the sort key * @return a comparator that compares by an extracted key using the * specified {@code Comparator} * @throws NullPointerException if either argument is null * @since 1.8 */ public static <T, U> Comparator<T> comparing( Function<? super T, ? extends U> keyExtractor, Comparator<? super U> keyComparator) { Objects.requireNonNull(keyExtractor); Objects.requireNonNull(keyComparator); return (Comparator<T> & Serializable) (c1, c2) -> keyComparator.compare(keyExtractor.apply(c1), keyExtractor.apply(c2)); }
JDK8抽象類與接口的區別
相同點:
1、都是抽象類型;
2、都可以實現方法;
3、都可以不依賴與實現者或者繼承者去實現方法。
不同點:
1、抽象類不能多繼承,接口可以;
2、抽象類與接口的設計理念不同,抽象類是is-a,接口是like-a,抽象類是對類的抽象,接口是對行為的抽象。
3、成員方法訪問的不同,抽象類允許非final屬性,允許方法是public,private和protected的,但是接口只允許常量屬性,方法都是public的。
選型
如果你關系屬性和方法的訪問權限,那就考慮抽象類,如果你重點關注多重繼承,考慮接口。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。