java.util.TimeZone.hasSameRules()


描述

hasSameRules(TimeZone other),如果这个区域具有相同的规则和另一个区偏移方法返回true。

声明

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

public boolean hasSameRules(TimeZone other)

参数

other - 这是要与之比较的TimeZone对象。

返回值

如果另一个区域不为null且与此区域相同,则方法调用返回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