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.

C.java 399B

123456789101112131415161718192021222324
  1. package symbols;
  2. public class C {
  3. /**
  4. * multiline
  5. * comment
  6. */
  7. void MethV() { }
  8. public void MethVI(int i) { }
  9. static public synchronized void MethVLF(long l, float f) { }
  10. int MethISO(String s, Object o) { return this.toString().length(); }
  11. public static volatile int i;
  12. public float f;
  13. static {
  14. i = 0;
  15. }
  16. {
  17. f = 1.f;
  18. }
  19. }