Als «static-initialization» getaggte Fragen

6
Ist endgültig schlecht definiert?
Zunächst ein Rätsel: Was druckt der folgende Code? public class RecursiveStatic { public static void main(String[] args) { System.out.println(scale(5)); } private static final long X = scale(10); private static long scale(long value) { return X * value; } } Antworten: 0 Spoiler unten. Wenn Sie drucken Xin Skala (long) und …


1
Statische Initialisierung durch JVM
Sprache: Java- Version: 12.0.2 String-Quellcode wie folgt: /* @implNote * The actual value for this field is injected by JVM. The static * initialization block is used to set the value here to communicate * that this static final field is not statically foldable, and to * avoid any possible …
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.