Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }