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.

AddMethod.java 201B

12345678910
  1. package test2;
  2. public class AddMethod {
  3. @SuppressWarnings("unused")
  4. private int f;
  5. public int f() { return 0; }
  6. public AddMethod() {}
  7. public int f(int i) { return i; }
  8. }