考慮以下程式碼片段:
class Foo { Y func(X x) {...} void doSomethingWithAFunc(Function<X,Y> f){...} void hotFunction(){ doSomethingWithAFunc(this::func); } }
如果重複呼叫 hotFunction,則快取this::func 可能是有益。
class Foo { Function<X,Y> f = this::func; ... void hotFunction(){ doSomethingWithAFunc(f); } }
虛擬機器通常會為方法引用建立匿名對象,因此快取參考會建立一次對象,而未快取版本則在每次呼叫 hotFunction 時都會建立它。
但是,差異在於執行相同呼叫網站的頻率以及使用不同方法對相同方法的方法引用呼叫網站。
Runnable r1=null; for(int i=0; i<2; i++) { Runnable r2=System::gc; if(r1==null) r1=r2; else System.out.println(r1==r2? "shared": "unshared"); }
相同的呼叫站點產生無狀態 lambda,並且 JVM 列印「共享」。
Runnable r1=null; for(int i=0; i<2; i++) { Runnable r2=Runtime.getRuntime()::gc; if(r1==null) r1=r2; else { System.out.println(r1==r2? "shared": "unshared"); System.out.println( r1.getClass()==r2.getClass()? "shared class": "unshared class"); } }
在這種情況下,相同的呼叫站點產生具有對運行時實例的引用的 lambda,JVM 會列印「unshared」和「shared」類別。 」
Runnable r1=System::gc, r2=System::gc; System.out.println(r1==r2? "shared": "unshared"); System.out.println( r1.getClass()==r2.getClass()? "shared class": "unshared class");
兩個不同的呼叫點產生相同的方法引用,但JVM 列印「unshared」和「unshared class」。
JVM 記住並重複呼叫點第一次呼叫時建立的實例。允許在呼叫網站之間共用方法引用,但目前的實作不允許。方法。在建構子/類別初始化中實例化並由多個執行緒使用並發。
以上是Java 8 中的快取方法引用何時提供效能優勢?的詳細內容。更多資訊請關注PHP中文網其他相關文章!