http://dr-hyder.livejournal.com/ ([identity profile] dr-hyder.livejournal.com) wrote in [personal profile] stdray 2012-04-26 01:36 pm (UTC)

Такие вещи всё же надо знать, иначе можно долго удивляться в самых разных местах :) например:

String a = "qwe";
String b = "qwe";
System.out.println(a==b); // True
String c = new String("qwe");
System.out.println(a==c); // False
String d = new String("qwe").intern();
System.out.println(a==d); // True

Post a comment in response:

This account has disabled anonymous posting.
If you don't have an account you can create one now.
HTML doesn't work in the subject.
More info about formatting