java.util.TimeZone hasSameRules()方法

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

1 语法

public boolean hasSameRules(TimeZone other)

2 参数

other:这是要比较时区对象。

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.TimeZone hasSameRules()方法
 */
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

 

热门文章

优秀文章