Skip to content

Instantly share code, notes, and snippets.

@reverocean
Created May 12, 2013 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reverocean/5563937 to your computer and use it in GitHub Desktop.
Save reverocean/5563937 to your computer and use it in GitHub Desktop.
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