Dans le code suivant DEFAULT_CACHE_SIZE est déclaré plus tard, mais il est utilisé pour assigner une valeur à la variable String avant cela, donc j'étais curieux de savoir comment c'est possible ?
public class Test {
public String getName() {
return this.name;
}
public int getCacheSize() {
return this.cacheSize;
}
public synchronized void setCacheSize(int size) {
this.cacheSize = size;
System.out.println("Cache size now " + this.cacheSize);
}
private final String name = "Reginald";
private int cacheSize = DEFAULT_CACHE_SIZE;
private static final int DEFAULT_CACHE_SIZE = 200;
}