當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。