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.

PrivateMethod.java 165B

1234567891011
  1. package test2;
  2. class PrivateMethod2 {
  3. private int f() { return 0; }
  4. int g() { return f(); }
  5. }
  6. public class PrivateMethod {
  7. public int i;
  8. }