Java TimeZone hasSameRules() 方法



描述

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

声明

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

public boolean hasSameRules(TimeZone other)

参数

other − 这是要比较的 TimeZone 对象。

返回值

如果 other 时区不为空且与此时区相同,则方法调用返回 true,但 ID 可能除外。

异常

检查两个相同时区是否具有相同规则和偏移量的示例

以下示例演示了如何使用 Java TimeZone hasSameRules() 方法比较两个时区对象。我们使用 getDefault() 方法创建了两个 TimeZone 对象。使用 hasSameRules() 我们比较了 TimeZone 对象并打印了结果。

package com.tutorialspoint;

import java.util.TimeZone;

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

检查 GMT 和 BST 时区是否具有相同偏移量以具有相同规则和偏移量的示例

以下示例演示了如何使用 Java TimeZone hasSameRules() 方法比较两个时区对象。我们使用 GMT 和 BST 的 SimpleTimeZone 对象创建了两个 TimeZone 对象,它们具有相同的偏移量。使用 hasSameRules() 我们比较了 TimeZone 对象并打印了结果。

package com.tutorialspoint;

import java.util.SimpleTimeZone;
import java.util.TimeZone;

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

      // create two time zone objects     
      TimeZone timezoneone = new SimpleTimeZone(60, "GMT");
      TimeZone timezonetwo = new SimpleTimeZone(60, "BST");

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

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

输出

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

Comparison result:true

检查 GMT 和 BST 时区是否具有不同偏移量以具有相同规则和偏移量的示例

以下示例演示了如何使用 Java TimeZone hasSameRules() 方法比较两个时区对象。我们使用 GMT 和 BST 的 SimpleTimeZone 对象创建了两个 TimeZone 对象,它们具有不同的偏移量。使用 hasSameRules() 我们比较了 TimeZone 对象并打印了结果。

package com.tutorialspoint;

import java.util.SimpleTimeZone;
import java.util.TimeZone;

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

      // create two time zone objects     
      TimeZone timezoneone = new SimpleTimeZone(60, "GMT");
      TimeZone timezonetwo = new SimpleTimeZone(100, "BST");

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

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

输出

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

Comparison result:false
java_util_timezone.htm
广告