字符串比较 by equals() 方法,Java 中的方法
String 类中的 equals() 方法比较此字符串与指定的对象。结果仅在参数非空并且是表示与本对象相同字符序列的 String 对象时为真。
示例
public class Test { public static void main(String args[]) { Integer x = 5; Integer y = 10; Integer z =5; Short a = 5; System.out.println(x.equals(y)); System.out.println(x.equals(z)); System.out.println(x.equals(a)); } }
输出
false true false
广告