java.util.function
Consumer<T> 接收T對(duì)象,不返回值
作用:
消費(fèi)某個(gè)對(duì)象
Iterable接口的forEach方法需要傳入Consumer,大部分集合類都實(shí)現(xiàn)了該接口,用于返回Iterator對(duì)象進(jìn)行迭代。
Iterable forEach 函數(shù):
default void forEach(Consumer<? super T> action) {
Objects.requireNonNull(action);
for (T t : this) {
action.accept(t);
}
}
使用場(chǎng)景:
forEach 自定義處理的邏輯代碼,靈活多變
demo
public static void main(String[] args) {
Consumer<Integer> methodParam = HelloHandler::staticMethod;
Consumer<Integer> methodParam1 = HelloHandler::staticMethod;
Consumer<Integer> methodParam2 = methodParam.andThen(methodParam1);
methodParam2.accept(1);
BiConsumer<HelloHandler,Integer> biConsumer = HelloHandler::normalMethod;
// methodParam1.accept(2);
// HelloHandler helloHandler = new HelloHandler();
//
// Function<Integer,Integer> function = new HelloHandler()::normalMethod;
// System.out.println( function.apply(1));
// Consumer<Integer> methodParam1 = helloHandler::normalMethod;
List<String> list = new ArrayList<>();
list.add("a");
list.add("b");
list.add("c");
list.forEach(new DemoConsumer());
}
static class DemoConsumer implements Consumer<String>{
@Override
public void accept(String s) {
//處理業(yè)務(wù)邏輯代碼
System.out.println("s = [" + s + "]");
}
}
這樣邏輯代碼就分離出來(lái)了
可以簡(jiǎn)化為 lambda 表達(dá)式:
list.forEach(c->{
//處理業(yè)務(wù)邏輯代碼
System.out.println("c = [" + c + "]");
});
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
文章標(biāo)題:java函數(shù)編程java.util.function.Consumer-創(chuàng)新互聯(lián)
鏈接分享:http://www.rwnh.cn/article22/csjpcc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供營(yíng)銷型網(wǎng)站建設(shè)、網(wǎng)站排名、外貿(mào)建站、域名注冊(cè)、用戶體驗(yàn)、云服務(wù)器
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容