在Java中,可以使用equals()方法來比較兩個字符串的內(nèi)容是否相等。示例如下:
String str1 = "Hello";
String str2 = "World";
if(str1.equals(str2)){
System.out.println("兩個字符串內(nèi)容相等");
} else {
System.out.println("兩個字符串內(nèi)容不相等");
}
除了equals()方法外,還可以使用equalsIgnoreCase()方法來忽略大小寫比較兩個字符串的內(nèi)容是否相等。示例如下:
String str1 = "hello";
String str2 = "Hello";
if(str1.equalsIgnoreCase(str2)){
System.out.println("兩個字符串內(nèi)容相等");
} else {
System.out.println("兩個字符串內(nèi)容不相等");
}