You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ConstField.java 425B

12345678910111213
  1. package test2;
  2. public class ConstField {
  3. public static final boolean b = true;
  4. public static final int i = 3;
  5. public static final long j = 7L;
  6. public static final float f = 8.0F;
  7. public static final double d = 9.0;
  8. public static final String s = "const";
  9. public static final Object obj = null;
  10. public static final Integer integer = new Integer(4);
  11. public static int k = 2;
  12. }