您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎么深入理解java1.8知道supplier,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
supplier也是是用來創建對象的,但是不同于傳統的創建對象語法:new,看下面代碼:
public class TestSupplier { private int age;
TestSupplier(){ System.out.println(age);
} public static void main(String[] args) {
//創建Supplier容器,聲明為TestSupplier類型,此時并不會調用對象的構造方法,即不會創建對象 Supplier<TestSupplier> sup= TestSupplier::new;
System.out.println("--------");
//調用get()方法,此時會調用對象的構造方法,即獲得到真正對象 sup.get();
//每次get都會調用構造方法,即獲取的對象不同 sup.get();
}}
輸出結果:
--------00
官方代碼及注釋:
/** * Represents a supplier of results. *
* <p>There is no requirement that a new or distinct result be returned each * time the supplier is invoked. *
* <p>This is a <a href="package-summary.html" rel="external nofollow" >functional interface</a> *
whose functional method is {@link #get()}.
* * @param <T> the type of results supplied by this supplier
* * @since 1.8 */@FunctionalInterfacepublic interface Supplier<T> {
/** * Gets a result. *
* @return a result */ T get();
}
根據代碼和官方注釋,我的個人理解:
1.supplier是個接口,有一個get()方法
2.語法 :
Supplier<TestSupplier> sup= TestSupplier::new;
3.每次調用get()方法時都會調用構造方法創建一個新對象。
上述內容就是怎么深入理解java1.8知道supplier,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。