java函數(shù)編程java.util.function.Consumer-創(chuàng)新互聯(lián)

java.util.function
Consumer<T> 接收T對象,不返回值

創(chuàng)新互聯(lián)公司堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站設(shè)計制作、網(wǎng)站設(shè)計、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的綏寧網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
作用:
        消費某個對象

    Iterable接口的forEach方法需要傳入Consumer,大部分集合類都實現(xiàn)了該接口,用于返回Iterator對象進行迭代。
    Iterable  forEach 函數(shù):
    default void forEach(Consumer<? super T> action) {
    Objects.requireNonNull(action);
    for (T t : this) {
        action.accept(t);
    }
}

    使用場景:
        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 + "]");
    }
}

    這樣邏輯代碼就分離出來了

    可以簡化為 lambda 表達式:
    list.forEach(c->{
        //處理業(yè)務(wù)邏輯代碼
        System.out.println("c = [" + c + "]");
    });

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

文章標題:java函數(shù)編程java.util.function.Consumer-創(chuàng)新互聯(lián)
鏈接分享:http://muchs.cn/article22/csjpcc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供營銷型網(wǎng)站建設(shè)、網(wǎng)站排名、外貿(mào)建站域名注冊、用戶體驗、云服務(wù)器

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站建設(shè)