当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Integer equals()用法及代码示例


Integer类equals()方法

  • equals() 方法可在java.lang包。
  • equals() 方法用于检查此对象与给定对象的相等或不相等,或者换句话说,我们可以说此方法用于比较两个对象。
  • equals() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • equals() 方法在比较两个对象时不会抛出异常。

用法:

    public boolean equals(Object ob);

参数:

  • Object ob– 代表要比较的对象。

返回值:

这个方法的返回类型是boolean,它返回一个布尔值,如果它返回 "true"Object1等于Object2,否则返回 "false"。

例:

// Java program to demonstrate the example 
// of boolean equals(Object o) method of Integer class

public class EqualsOfIntegerClass {
    public static void main(String[] args) {
        // Integer Object initialization
        Integer ob1 = new Integer(10);
        Integer ob2 = new Integer(20);

        // Display ob1,ob2 values
        System.out.println("ob1:" + ob1);
        System.out.println("ob2:" + ob2);

        // It compare two objects of Integer type
        // by calling ob1.equals(ob2)
        boolean compare = ob1.equals(ob2);

        // Display result values
        System.out.println("ob1.equals(ob2):" + compare);

        if (compare == true)
            System.out.println("Both objects are equal");
        else
            System.out.println("Both objects are not equal");
    }
}

输出

ob1:10
ob2:20
ob1.equals(ob2):false
Both objects are not equal


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Integer class equals() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。