i have a question in effective_java this book, what's mean of the 'modern Java virtual machine (JVM) implementations are almost certain to inline the call to the static factory method.' i don't understand 'inline the call to the static factory method'
Quote:
The main advantage of the public field approach is that the declarations make it clear that the class is a singleton: the public static field is final, so it will always contain the same object reference. There is no longer any performance advantage to the public field approach: modern Java virtual machine (JVM) implementations are almost certain to inline the call to the static factory method