equals()
优质
小牛编辑
124浏览
2023-12-01
该方法确定调用方法的Number对象是否等于作为参数传递的对象。
语法 (Syntax)
public boolean equals(Object o)
参数 (Parameters)
o - 任何对象。
返回值 (Return Value)
如果参数不为null并且是相同类型且具有相同数值的对象,则方法返回True。
例子 (Example)
以下是此方法的使用示例 -
class Example {
static void main(String[] args) {
Integer x = 5;
Integer y = 10;
Integer z = 5;
//Comparison against an Integer of different value
System.out.println(x.equals(y));
//Comparison against an Integer of same value
System.out.println(x.equals(z));
}
}
当我们运行上述程序时,我们将得到以下结果 -
false
true