java.util.SimpleTimeZone.hasSameRules(TimeZone other)


描述

所述hasSameRules(TimeZone other)方法被用来为“true”,如果该区域具有相同的规则和作为另一区偏移。

声明

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

public boolean hasSameRules(TimeZone other)

参数

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

返回值

如果给定区域是SimpleTimeZone并且具有与此条件相同的规则和偏移量,则方法调用返回“true”。

异常

NA

实例

以下示例显示了java.util.SimpleTimeZone.hasSameRules()的用法

package com.tutorialspoint;

import java.util.*;

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

      // create two simple time zone object
      SimpleTimeZone stobj1 = new SimpleTimeZone(820,"US");
      SimpleTimeZone stobj2 = new SimpleTimeZone(820,"GMT");

      // check rules for both objects
      boolean samerule = stobj1.hasSameRules(stobj2);

      // checking the value       
      System.out.println("Hash same rule : " + samerule);
   }    
}

让我们编译并运行上面的程序,这将产生以下结果。

Hash same rule : true