I Wondered How Hell this Code Gets Compiled
class testing{
protected void finalize(){
System.out.println("Object GCd");
}
void nothing(){
String s2 = new String("Susan");
s1=null; System.gc();
}
public static void main(String args[]){
testing t = new testing();t.nothing();
}
}
What is s1???