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


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


Java中的OffsetTime類的getLong()方法從此時開始一直獲取參數中指定字段的值。

用法:

public long getLong(TemporalField field)

參數:此方法接受一個參數字段,該字段指定要獲取的字段,而不是null。


返回值:它返回該字段的值。

錯誤和異常:程序返回三個異常,如下所述:

  • UnsupportedTemporalTypeException:如果不支持該字段或值的範圍太長,則拋出該錯誤。
  • DateTimeException:如果無法獲取該字段的值,或者該值超出該字段的有效值範圍,則拋出該錯誤。
  • ArithmeticException:如果發生數字溢出則拋出該錯誤

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

示例1:

// Java program to demonstrate the getLong() method 
  
import java.time.OffsetTime; 
import java.time.temporal.ChronoField; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // Parses the time 
        OffsetTime time = OffsetTime.parse("11:10:10+11:00"); 
        System.out.println("Gets the long time: "
               + time.getLong(ChronoField.CLOCK_HOUR_OF_DAY)); 
    } 
}
輸出:
Gets the long time: 11

程序2

// Java program to demonstrate the getLong() method 
// Exceptions 
  
import java.time.OffsetTime; 
import java.time.temporal.ChronoField; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        try { 
  
            // Parses the time 
            OffsetTime time = OffsetTime.parse("11:10:10+11:00"); 
            System.out.println("Gets the long time: " 
                   + time.getLong(ChronoField.CLOCK_HOUR_OF_DAY)); 
        } 
        catch (Exception e) { 
            System.out.println("Excetpion: " + e); 
        } 
    } 
}
輸出:
Gets the long time: 11

參考: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#getLong-java.time.temporal.TemporalField-



相關用法


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