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