溫馨提示×

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

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

Java中的惰性評(píng)估是什么及怎么實(shí)現(xiàn)

發(fā)布時(shí)間:2022-02-28 10:01:49 來源:億速云 閱讀:151 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了Java中的惰性評(píng)估是什么及怎么實(shí)現(xiàn)的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇Java中的惰性評(píng)估是什么及怎么實(shí)現(xiàn)文章都會(huì)有所收獲,下面我們一起來看看吧。

1、說明

惰性評(píng)估是將表達(dá)式的評(píng)估延遲到需要時(shí)才進(jìn)行的過程。Java是嚴(yán)格的立即賦值評(píng)估。

可以使用lambda表達(dá)式和高階函數(shù)將其重寫為延遲評(píng)估的版本。

2、實(shí)例

public class LazySample {
    public static void main(String[] args) {
        //這是一個(gè)lambda表達(dá)式,表現(xiàn)為閉包
        UnaryOperator<Integer> add = t -> {
            System.out.println("executing add");
            return t + t;
        };
      //這是一個(gè)lambda表達(dá)式,表現(xiàn)為閉包
        UnaryOperator<Integer> multiply = t -> {
            System.out.println("executing multiply");
            return t * t;
        };
        //傳遞Lambda閉包而不是普通函數(shù)
        System.out.println(addOrMultiply(true, add, multiply, 4));
        System.out.println(addOrMultiply(false, add, multiply, 4));
    }
 
    //這是一個(gè)高階函數(shù)
    static <T, R> R addOrMultiply(
            boolean add, Function<T, R> onAdd,
            Function<T, R> onMultiply, T t
    ) {
        // Java的?會(huì)懶惰計(jì)算表達(dá)式,因此僅執(zhí)行所需的方法
        return (add ? onAdd.apply(t) : onMultiply.apply(t));
    }
}

實(shí)例擴(kuò)展:

public class SingleLock<V> implements Lazy<V> {
 
    private Callable<V> codeBlock;
    private V value;
 
    public SingleLock(Callable<V> codeBlock) {
        this.codeBlock = codeBlock;
    }
 
    @Override
    public synchronized V get() {
        if (value == null) {
            setValue();
        }
        return value;
    }
 
    private void setValue() {
        try {
            value = codeBlock.call();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
 
 
}

關(guān)于“Java中的惰性評(píng)估是什么及怎么實(shí)現(xiàn)”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“Java中的惰性評(píng)估是什么及怎么實(shí)現(xiàn)”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

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

AI