In JDK 1.6, can String equals operation can be replaced with ==?

前端 未结 5 988
谎友^
谎友^ 2020-12-21 04:10

As I study the source code of some open source products, I find code like:

if (a==\"cluser\")

a is a String variable. Can a St

5条回答
  •  醉话见心
    2020-12-21 05:04

    You should almost never use == and almost always use equals(). It will only work with == if both strings reference the same object. There's an intern() method on String to return the same reference for a given string value. String literals are implicitly interned. Only if you have a very good reason should you use == for string comparison, and even then you need to be very careful.

    The only good reason is performance, and very rarely will it matter. Only optimize once you know for sure that you need to do so. It's otherwise normally not worth the hassle. If you're looking at some open source code, they might have a case whereby the comparison is in a very tight loop or called very frequently and the optimization can help. Or it was just prematurely optimized and maybe seemed safe.

提交回复
热议问题