位置:首页 > Java技术 > Java.util包 > java.util.TimeZone.hasSameRules()方法实例

java.util.TimeZone.hasSameRules()方法实例

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

声明

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

public boolean hasSameRules(TimeZone other)

参数

  • other--这是要比较时区对象。

返回值

如果其他区域不为空并且这一个是一样的,ID可能是异常的,方法调用返回true。

异常

  • NA

例子

下面的例子显示java.util.TimeZone.hasSameRules()方法的使用

package com.yiibai;

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