1 package p; 2 3 4 public class ConstJava { 5 6 public static final String myStringConst = ""; 7 public static final int myIntConst = 0; 8 9 public static final ConstJava myConstObjConst = new ConstJava(); // Not a constant, as it have not primitive type 10 }