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


Java TimeZone hasSameRules()用法及代碼示例


Java中的TimeZone類的hasSameRules()方法用於檢查兩個TimeZone之間的相等性。如果指定的TimeZone與另一個TimeZone具有相同的規則和偏移值,則該方法返回True。

用法:

public boolean hasSameRules(TimeZone TimeZone_2)

參數:該方法采用對象類型的一個參數TimeZone_2,該參數表示需要與該TimeZone進行比較的TimeZone。


返回值:如果兩個TimeZone共享相同的規則和偏移值,但ID均為False,則該方法返回布爾True。

下麵的程序演示了TimeZone的hasSameRules()方法的用法:

// Java code to illustrate hasSameRules() method 
  
import java.util.*; 
  
public class TimeZone_Demo { 
    public static void main(String args[]) 
    { 
  
        // Creating the first TimeZone 
        TimeZone first_time_zone 
            = TimeZone.getDefault(); 
  
        // Creating the second TimeZone 
        TimeZone sec_time_zone 
            = TimeZone.getDefault(); 
  
        // Applying hasSameRules() to check for equality 
        System.out.println("The equality holds: "
                           + first_time_zone 
                                 .hasSameRules(sec_time_zone)); 
    } 
}
輸出:
The equality holds: true

參考:https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#hasSameRules()



相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 TimeZone hasSameRules() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。