溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么使用java8中雙冒號

發(fā)布時間:2021-11-20 11:37:09 來源:億速云 閱讀:208 作者:iii 欄目:編程語言

本篇內(nèi)容主要講解“怎么使用java8中雙冒號”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“怎么使用java8中雙冒號”吧!

代碼其實很簡單:

以前的代碼一般是如此的:

public class AcceptMethod {  public static void printValur(String str){ System.out.println("print value : "+str); }  public static void main(String[] args) { List al = Arrays.asList("a","b","c","d"); for (String a: al) {  AcceptMethod.printValur(a); } //下面的for each循環(huán)和上面的循環(huán)是等價的  al.forEach(x->{  AcceptMethod.printValur(x); }); }}

現(xiàn)在JDK雙冒號是:

public class MyTest { public static void printValur(String str){ System.out.println("print value : "+str); }  public static void main(String[] args) { List al = Arrays.asList("a", "b", "c", "d"); al.forEach(AcceptMethod::printValur); //下面的方法和上面等價的 Consumer methodParam = AcceptMethod::printValur; //方法參數(shù) al.forEach(x -> methodParam.accept(x));//方法執(zhí)行accept }}

上面的所有方法執(zhí)行玩的結(jié)果都是如下:

print value : aprint value : bprint value : cprint value : d

在JDK8中,接口Iterable 8中默認(rèn)實現(xiàn)了forEach方法,調(diào)用了 JDK8中增加的接口Consumer內(nèi)的accept方法,執(zhí)行傳入的方法參數(shù)。

JDK源碼如下:

/** * 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); } }

另外補充一下,JDK8改動的,在接口里面可以有默認(rèn)實現(xiàn),就是在接口前加上default,實現(xiàn)這個接口的函數(shù)對于默認(rèn)實現(xiàn)的方法可以不用再實現(xiàn)了。類似的還有static方法?,F(xiàn)在這種接口除了上面提到的,還有BiConsumer,BiFunction,BinaryOperation等,在java.util.function包下的接口,大多數(shù)都有,后綴為Supplier的接口沒有和別的少數(shù)接口。

到此,相信大家對“怎么使用java8中雙冒號”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI