Is Preserving Method References Beneficial in Java 8?
Consider the following code snippet:
class Foo { Y func(X x) {...} void doSomethingWithAFunc(Function<x> f){...} void hotFunction(){ doSomethingWithAFunc(this::func); } }</x>
If the hotFunction is called repeatedly, caching this::func may be beneficial.
class Foo { Function<x> f = this::func; ... void hotFunction(){ doSomethingWithAFunc(f); } }</x>
Virtual Machines typically create anonymous objects for method references, so caching the reference creates the object once, while the uncached version creates it each time hotFunction is invoked.
However, the distinction lies in the frequency of executing the same call-site and using a method-reference to the same method from different call-sites.
Runnable r1=null; for(int i=0; i<p>The same call-site produces a stateless lambda, and the JVM prints "shared."</p><pre class="brush:php;toolbar:false">Runnable r1=null; for(int i=0; i<p>In this scenario, the same call-site produces a lambda with a reference to a Runtime instance, and the JVM prints "unshared" and "shared class."</p><pre class="brush:php;toolbar:false">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");
Two distinct call-sites produce the same method reference, but the JVM prints "unshared" and "unshared class."
The JVM remembers and reuses call-site instances created on the first invocation. For stateless lambdas and single call-sites, it produces a constant object. The JVM is allowed to share method references between call-sites, but the current implementation does not.
Caching may be beneficial in the following cases:
- Numerous distinct call-sites refer to the same method.
- The lambda is instantiated in a constructor/class initialization and used by multiple threads concurrently.
- The first invocation has reduced performance.
The above is the detailed content of When Does Caching Method References in Java 8 Offer Performance Benefits?. For more information, please follow other related articles on the PHP Chinese website!

The article discusses using Maven and Gradle for Java project management, build automation, and dependency resolution, comparing their approaches and optimization strategies.

The article discusses creating and using custom Java libraries (JAR files) with proper versioning and dependency management, using tools like Maven and Gradle.

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

The article discusses using JPA for object-relational mapping with advanced features like caching and lazy loading. It covers setup, entity mapping, and best practices for optimizing performance while highlighting potential pitfalls.[159 characters]

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment