java.time.Instant.equals() 方法示例



说明

java.time.Instant.equals(Object otherInstant) 方法检查该 instant 是否等于指定的 instant。

声明

以下是 java.time.Instant.equals(Object otherInstant) 方法的声明。

public boolean equals(Object otherInstant)

参数

otherInstant - 其他 instant,null 返回 false。

返回值

如果其他 instant 等于此 instant,则为 true。

示例

以下示例展示了 java.time.Instant.equals(Object otherInstant) 的用法。

package com.tutorialspoint;

import java.time.Instant;

public class InstantDemo {
   public static void main(String[] args) {

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
      System.out.println("Instant #1: " + instant);  

      Instant instant1 = Instant.parse("2017-03-03T10:37:30.00Z");
      System.out.println("Instant #2: " + instant1);  

      boolean result = instant.equals(instant1);
      System.out.println(result ? "Instant #1 is same as Instant #2."
         :"Instant #2 is not same as Instant #1.");  
   }
}

让我们编译并运行上述程序,将产生以下结果 -

Instant #1: 2017-02-03T10:37:30Z
Instant #2: 2017-03-03T10:37:30Z
Instant #2 is not same as Instant #1.
广告