the output of this is true... i was just goofing around and seeing the o/ps for some unique cases...
can anyone explain this.. i guess
a null is a null is a null!
//code
class a{
static
String s1;
static String s2 = new String(s1);
public static void main(String args[]){
System.out.println(s1 == s2);
}
}
//code ends here