.equals() 测试值是否相等(在逻辑上是否为“相等”)。
String.contentEquals() 将的内容String与任何内容进行比较CharSequence(从Java 1.5开始可用)。
因此,如果要测试两个字符串是否具有相同的值,则可能要使用Objects.equals()。
// 值相等new String("test").equals("test") // --> true // 不是同一个对象new String("test") == "test" // --> false // 不是同一个对象new String("test") == new String("test") // --> false // 同一个对象"test" == "test" // --> true // 同一个对象"test" == "te" + "st" // --> true// Objects.equals()比较内容Objects.equals("test", new String("test")) // --> trueObjects.equals(null, "test") // --> falseObjects.equals(null, null) // --> true
我们使用Objects.equals()的时候多,很少使用==。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)