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


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


Clock类equals()方法

  • equals() 方法可在java.time包。
  • equals() 方法用于检查这个 Clock 对象和给定的 Object 是否相等。
  • equals() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • equals() 方法在比较两个对象时不会抛出异常。

用法:

    public boolean equals(Object o);

参数:

  • Object o– 表示要与此对象进行比较的对象。

返回值:

这个方法的返回类型是boolean,当两个比较对象的状态相等时返回真,否则返回假。

例:

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

import java.time.*;

public class EqualsOfClock {
    public static void main(String args[]) {
        // Initialize two Clock objects  
        Clock cl1 = Clock.systemDefaultZone();
        Clock cl2 = Clock.systemUTC();

        // Display cl1 instant
        Instant cl_ins = cl1.instant();
        System.out.println("cl1.instant():" + cl_ins);

        // Display cl2 instant
        cl_ins = cl2.instant();
        System.out.println("cl2.instant():" + cl_ins);

        // checks whether this object(cl1) is equal to
        // the given object(cl2) or not here it returns
        // false because their instant are not same
        boolean status = cl1.equals(cl2);
        System.out.println("cl1.equals (cl2):" + status);

        // checks whether this object(cl1) is equal to
        // the given object(null) or not here it returns
        // false when we compare this object
        // with null 
        status = cl1.equals(null);
        System.out.println("cl1.equals (null):" + status);
    }
}

输出

cl1.instant():2020-05-13T17:21:57.819316Z
cl2.instant():2020-05-13T17:21:57.891364Z
cl1.equals (cl2):false
cl1.equals (null):false


相关用法


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