📜  Java中的 TimeZone getDSTSavings() 方法及示例

📅  最后修改于: 2022-05-13 01:54:26.315000             🧑  作者: Mango

Java中的 TimeZone getDSTSavings() 方法及示例

Java中TimeZone 类getDSTSavings()方法用于了解需要添加到本地标准时间才能获取挂钟时间的时间量。

句法:

public int getDSTSavings()

参数:该方法不带任何参数。

返回值:该方法以毫秒为单位返回需要添加到本地标准时间以获取挂钟时间的时间量。这称为节省时间

下面的程序说明了 TimeZone 的 getDSTSavings() 方法的工作原理:
示例 1:

// Java code to illustrate getDSTSavings() method
  
import java.util.*;
  
public class TimeZoneDemo {
    public static void main(String args[])
    {
  
        // Creating a TimeZone
        TimeZone offtime_zone
            = TimeZone
                  .getTimeZone("Pacific/Pago_Pago");
  
        // Knowing the DST
        System.out.println("The DST is: "
                           + offtime_zone.getDSTSavings());
    }
}
输出:
The DST is: 0

示例 2:

// Java code to illustrate getDSTSavings() method
  
import java.util.*;
  
public class TimeZoneDemo {
    public static void main(String args[])
    {
  
        // Creating a TimeZone
        TimeZone offtime_zone
            = TimeZone.getTimeZone("Europe/Rome");
  
        // Knowing the DST
        System.out.println("The DST is: "
                           + offtime_zone.getDSTSavings());
    }
}
输出:
The DST is: 3600000

参考: https: Java/util/TimeZone.html#getDSTSavings()