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


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



描述

這個hasSameRules(TimeZone other)如果此區域與另一個區域具有相同的規則和偏移量,則方法返回 true。

聲明

以下是聲明java.util.TimeZone.hasSameRules()方法。

public boolean hasSameRules(TimeZone other)

參數

other─ 這是要與之比較的 TimeZone 對象。

返回值

如果另一個區域不為空並且與此區域相同,則方法調用返回 true,ID 可能除外。

異常

NA

示例

下麵的例子展示了 java.util.TimeZone.hasSameRules() 的用法

package com.tutorialspoint;

import java.util.*;

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

      // create two time zone objects     
      TimeZone timezoneone = TimeZone.getDefault();
      TimeZone timezonetwo = TimeZone.getDefault(); 

      // comparing two time zones
      boolean res = timezoneone.hasSameRules(timezonetwo);

      // checking the result   
      System.out.println("Comparison result:" +res );
   }    
}

讓我們編譯並運行上麵的程序,這將產生以下結果。

Comparison result:true

相關用法


注:本文由純淨天空篩選整理自 java.util.TimeZone.hasSameRules() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。