Skip to content

Instantly share code, notes, and snippets.

@okitsutakatomo
Created December 9, 2009 17:12
Show Gist options
  • Save okitsutakatomo/252606 to your computer and use it in GitHub Desktop.
Save okitsutakatomo/252606 to your computer and use it in GitHub Desktop.
class Hello {
public static void main(String[] argv){
String test = "test";
System.out.println("before: " + test);
testToNull(test);
System.out.println("after: " + test);
}
public static void testToNull(String test){
test = null;
return;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment