共计 461 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用 equals() 方法来比较两个字符串是否相等。示例如下:
String str1 = "Hello";
String str2 = "World";
if(str1.equals(str2)) {System.out.println("The two strings are equal.");
} else {System.out.println("The two strings are not equal.");
}
另外,还可以使用 equalsIgnoreCase() 方法来忽略大小写比较两个字符串是否相等。示例如下:
String str1 = "hello";
String str2 = "HELLO";
if(str1.equalsIgnoreCase(str2)) {System.out.println("The two strings are equal ignoring case.");
} else {System.out.println("The two strings are not equal ignoring case.");
}
丸趣 TV 网 – 提供最优质的资源集合!
正文完