Skip to content

Instantly share code, notes, and snippets.

@artem-smotrakov
Last active September 26, 2018 10:13
Show Gist options
  • Save artem-smotrakov/b520bea1b807529edf1d6c4948025e85 to your computer and use it in GitHub Desktop.
Save artem-smotrakov/b520bea1b807529edf1d6c4948025e85 to your computer and use it in GitHub Desktop.
package com.gypsyengineer.innerclass.field;
public class Outer {
private int secret = 10;
public void check() {
if (secret < 0) {
System.out.println("Oops");
} else {
System.out.println("Okay");
}
}
public class Inner {
public void go() {
secret = 42;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment