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


Java ZoneOffsetTransition getOffsetAfter()用法及代码示例


java.time.zone.ZoneOffsetTransition类的getOffsetAfter()方法用于在转换发生后获取第二个偏移区域的偏移值。第一个和第二个偏移量是指在创建ZoneOffsetTransition对象时传递的值。

用法:

public ZoneOffset getOffsetAfter()

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

返回值:此方法在转换发生后返回第二个区域偏移量的偏移值。它不返回Null。

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



范例1:

// Java program to demonstrate 
// getOffsetAfter() 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 the 
        // object of LocalDateTime 
        LocalDateTime loc 
            = LocalDateTime.of( 
                1999, 04, 25, 03, 
                24, 45, 0); 
  
        // Creating and initializing the 
        // object of ZoneOffset 
        ZoneOffset off1 
            = ZoneOffset.ofTotalSeconds( 
                8); 
  
        // Creating and initializing the 
        // object of ZoneOffset 
        ZoneOffset off2 
            = ZoneOffset.ofTotalSeconds( 
                12); 
  
        // Creating and initializing 
        // ZoneOffsetTransition Object 
        ZoneOffsetTransition zonetrans1 
            = ZoneOffsetTransition.of( 
                loc, off1, off2); 
  
        // Getting the offset after value 
        // by using getOffsetAfter() method 
        ZoneOffset off 
            = zonetrans1.getOffsetAfter(); 
  
        // Display the result 
        System.out.println( 
            "Zoneoffset after transition:"
            + off); 
    } 
}
输出:
Zoneoffset after transition:+00:00:12

范例2:

// Java program to demonstrate 
// getOffsetAfter() 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 the 
        // object of LocalDateTime 
        LocalDateTime loc 
            = LocalDateTime.of( 
                1999, 04, 25, 03, 
                24, 45, 0); 
  
        // Creating and initializing the 
        // object of ZoneOffset 
        ZoneOffset off1 
            = ZoneOffset.ofTotalSeconds( 
                12); 
  
        // Creating and initializing the 
        // object of ZoneOffset 
        ZoneOffset off2 
            = ZoneOffset.ofTotalSeconds( 
                8); 
  
        // Creating and initializing 
        // ZoneOffsetTransition Object 
        ZoneOffsetTransition zonetrans1 
            = ZoneOffsetTransition.of( 
                loc, off1, off2); 
  
        // Getting the offset after value 
        // by using getOffsetAfter() method 
        ZoneOffset off 
            = zonetrans1.getOffsetAfter(); 
  
        // Display the result 
        System.out.println( 
            "Zoneoffset after transition:"
            + off); 
    } 
}
输出:
Zoneoffset after transition:+00:00:08

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




相关用法


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