Java 字符串 equals() 方法
示例
比较字符串以确定它们是否相等
String myStr1 = "Hello";
String myStr2 = "Hello";
String myStr3 = "Another String";
System.out.println(myStr1.equals(myStr2)); // Returns true because they are equal
System.out.println(myStr1.equals(myStr3)); // false
定义和用法
The equals()
方法比较两个字符串,如果字符串相等则返回 true,否则返回 false。
提示:使用 compareTo() 方法按字典顺序比较两个字符串。
语法
public boolean equals(Object anotherObject)
参数值
参数 | 描述 |
---|---|
anotherObject | An Object , representing the other string to be compared |
技术细节
返回值 | A boolean value
|
---|---|
覆盖 | equals in class Object |
❮ 字符串方法