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


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


ZoneId类的equals()方法,用于将该ZoneId与作为参数传递的ZoneId对象进行比较。该方法要返回的值确定如下:

  • 如果两个ZoneId相等,则返回true
  • 如果两个ZoneId不相等,则返回false。

用法:

public boolean equals(Object obj)

参数:此方法接受单个参数obj,该参数表示要与此ZoneId进行比较的对象,不能为null。


返回值:如果两个ZoneId相等,则此方法返回true,否则返回false。

以下示例程序旨在说明equals()方法:
示例1:

// Java program to demonstrate 
// ZoneId.equals() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create two diff ZoneId objects 
        ZoneId ZoneId1 
            = ZoneId.of("Europe/Paris"); 
  
        ZoneId ZoneId2 
            = ZoneId.of("Asia/Calcutta"); 
  
        // apply equals() method to check 
        // whether both ZoneIds are equal or not 
        boolean response = ZoneId1.equals(ZoneId2); 
  
        // print result 
        System.out.println("Both ZoneIds"
                           + "are equal: " + response); 
    } 
}
输出:
Both ZoneIdsare equal: false

示例2:

// Java program to demonstrate 
// ZoneId.equals() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create two diff ZoneId objects 
        ZoneId ZoneId1 
            = ZoneId.of("Asia/Calcutta"); 
  
        ZoneId ZoneId2 
            = ZoneId.of("Asia/Calcutta"); 
  
        // apply equals() method to check 
        // whether both ZoneIds are equal or not 
        boolean response = ZoneId1.equals(ZoneId2); 
  
        // print result 
        System.out.println("Both ZoneIds"
                           + "are equal: " + response); 
    } 
}
输出:
Both ZoneIdsare equal: true

参考文献:
https://docs.oracle.com/javase/10/docs/api/java/time/ZoneId.html#equals(java.lang.Object)



相关用法


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