Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ValeryVerkhoturov/fa5be71376693f41402a3dbdff9cbedc to your computer and use it in GitHub Desktop.
Save ValeryVerkhoturov/fa5be71376693f41402a3dbdff9cbedc to your computer and use it in GitHub Desktop.
public class A {
private Object secretField = new Object();
private void secretMethod() {}
void method1(A a) {
a.secretMethod();
System.out.println(a.secretField);
}
static void method2(A a) {
a.secretMethod();
System.out.println(a.secretField);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment