阅读量:0
在Java中,String类的equals()方法用于比较两个字符串对象的内容是否相等。equals()方法有以下几种用法:
- 比较两个字符串是否相等:
String str1 = "hello"; String str2 = "world"; if (str1.equals(str2)) { System.out.println("两个字符串相等"); } else { System.out.println("两个字符串不相等"); }
- 比较忽略大小写的字符串是否相等:
String str1 = "HELLO"; String str2 = "hello"; if (str1.equalsIgnoreCase(str2)) { System.out.println("两个字符串相等"); } else { System.out.println("两个字符串不相等"); }
- 检查字符串是否为空或为null:
String str = "hello"; if (str != null && !str.isEmpty()) { System.out.println("字符串不为空"); } else { System.out.println("字符串为空或为null"); }
需要注意的是,equals()方法比较的是字符串的内容,而不是引用。因此,即使两个字符串对象引用不同的内存地址,只要它们的内容相同,equals()方法也会返回true。