Created
March 6, 2014 08:32
-
-
Save loop/9384918 to your computer and use it in GitHub Desktop.
This file contains 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
class staticTest { | |
int x = 3; | |
int f (int z)class staticTest { | |
int x = 3; | |
int f (int z) { | |
return z+x; | |
} | |
public static void main(String[] args) { | |
staticTest test = new staticTest(); | |
boolean x = true; | |
System.out.println(test.f(6)); | |
} | |
} { | |
return z+x; | |
} | |
public static void main(String[] args) { | |
staticTest test = new staticTest(); | |
boolean x = true; | |
System.out.println(test.f(6)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment