Auf Thema antworten

[code=Java]

public class Constants {

  public static final int SOME_VALUE = 1;

}


// Zugriff:

int i = Constants.SOME_VALUE;

[/code]



Oben