當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java OffsetTime getOffset()用法及代碼示例


Java中OffsetTime類的getOffset()方法從解析的時間(例如“ +05:00”)中獲取區域偏移,可以將其視為示例。

用法:

public ZoneOffset getOffset()

參數:此方法不接受任何參數。


返回值:它返回區域偏移量,而不是null。

以下示例程序旨在說明getOffset()方法:

示例1:

// Java program to demonstrate the getOffset() method 
  
import java.time.OffsetTime; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Parses the time 
        OffsetTime time 
            = OffsetTime.parse("15:30:30+07:00"); 
  
        // gets the offset time 
        System.out.println("Offset time: "
                           + time.getOffset()); 
    } 
}
輸出:
Offset time: +07:00

程序2

// Java program to demonstrate the getOffset() method 
  
import java.time.OffsetTime; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Parses the time 
        OffsetTime time 
            = OffsetTime.parse("11:20:10+04:00"); 
  
        // gets the offset time 
        System.out.println("Offset time: "
                           + time.getOffset()); 
    } 
}
輸出:
Offset time: +04:00

參考: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#getOffset–



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 OffsetTime getOffset() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。