Created
April 13, 2015 11:31
-
-
Save wbars/72c1d13f356ef8ad2e84 to your computer and use it in GitHub Desktop.
java-example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main | |
{ | |
public void main() | |
{ | |
Test test = new Test(); | |
Test.Inner inner = test.new Inner(); | |
inner.testMethod(); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Test | |
{ | |
public String field; | |
public class Inner | |
{ | |
public void testMethod() { | |
field = 'Hey!'; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment