When should one compare Strings as objects and when should one use their equals method? To make sure, I always use equals, but that doesn't seem very efficient. In what situations can I be certain that string1 == string2 is a safe to use?
Thanks!
equals()method too (since String is a final class and this method is likely called enough times for Hotspot to optimise it). So you'd be unlikely even to see any extra overhead for method invocation - performance should (probably) be identical to a plain==check if the string references are identical, but when they're not you'll get a correct comparison anyway. – Andrzej Doyle Mar 1 '11 at 16:48