当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ZoneOffsetTransitionRule getOffsetBefore()用法及代码示例


java.time.zone.ZoneOffsetTransitionRule类的getOffsetBefore()方法用于在过渡开始的特定瞬间获取区域偏移量的对象。

用法:

public ZoneOffset getOffsetBefore()

参数:此方法不接受任何参数。

返回值:此方法在过渡开始的特定时刻返回区域偏移的对象。

下面是说明getOffsetBefore()方法的示例:



范例1:

// Java program to demonstrate 
// getOffsetBefore() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
import java.time.zone.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
  
        // creating and initializing 
        // ZoneOffsetTransitionRule Object 
        ZoneOffsetTransitionRule zonetrans1 
            = ZoneOffsetTransitionRule 
                  .of( 
                      Month.JANUARY, 12, 
                      DayOfWeek.SUNDAY, 
                      LocalTime.of(03, 24, 45), 
                      false, 
                      ZoneOffsetTransitionRule 
                          .TimeDefinition 
                          .STANDARD, 
                      ZoneOffset.ofTotalSeconds(8), 
                      ZoneOffset.ofTotalSeconds(10), 
                      ZoneOffset.ofTotalSeconds(12)); 
  
        // getting object of Zone offset 
        // by using getOffsetBefore() method 
        ZoneOffset off 
            = zonetrans1.getOffsetBefore(); 
  
        // display the result 
        System.out.println( 
            "Zone Offset before:" + off); 
    } 
}
输出:
Zone Offset before:+00:00:10

范例2:

// Java program to demonstrate 
// getOffsetBefore() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
import java.time.zone.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
  
        // creating and initializing 
        // ZoneOffsetTransitionRule Object 
        ZoneOffsetTransitionRule zonetrans1 
            = ZoneOffsetTransitionRule 
                  .of( 
                      Month.JANUARY, 12, 
                      DayOfWeek.SUNDAY, 
                      LocalTime.of(03, 24, 45), 
                      false, 
                      ZoneOffsetTransitionRule 
                          .TimeDefinition 
                          .STANDARD, 
                      ZoneOffset.ofTotalSeconds(8), 
                      ZoneOffset.ofTotalSeconds(17), 
                      ZoneOffset.ofTotalSeconds(12)); 
  
        // getting object of Zone offset 
        // by using getOffsetBefore() method 
        ZoneOffset off 
            = zonetrans1.getOffsetBefore(); 
  
        // display the result 
        System.out.println( 
            "Zone Offset before:" + off); 
    } 
}
输出:
Zone Offset before:+00:00:17

参考: https://docs.oracle.com/javase/9/docs/api/java/time/zone/ZoneOffsetTransitionRule.html#getOffsetBefore-




相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 ZoneOffsetTransitionRule getOffsetBefore() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。