Created
May 12, 2013 15:35
-
-
Save reverocean/5563937 to your computer and use it in GitHub Desktop.
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 Foo { | |
private int value; | |
private final static String constant = "Test"; | |
private static int money = 12; | |
public Foo(int value){ | |
this.value = value; | |
} | |
public void foo(){ | |
int v = this.value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment