A String based puzzle for you.
The following program
String te = "te", st = "st";
// "test".length();
String username = te + st;
username.intern();
System.out.println("String object the same is: "
+ (username == "test"));
prints under Java 7 update 7.
String object the same is: true
Preview Text:
...
↧