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


Java OffsetTime get()用法及代码示例


Java中OffsetTime类的get()方法从此时开始以int形式获取指定字段的值。

用法:

public int get(TemporalField field)

参数:此方法接受一个参数字段,该参数字段指定要获取的字段,而不是null。


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

异常:该函数抛出以下三个异常:

  • UnsupportedTemporalTypeException:如果不支持该字段或值的范围超过int,则将其抛出
  • DateTimeException:如果无法获得该字段的值或该值超出该字段的有效值范围,则将其抛出。
  • ArithmeticException:如果发生数字溢出,则将其抛出

以下示例程序旨在说明get()方法:

程序1:

// Java program to demonstrate the get() 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("15:30:30+07:00"); 
  
        // gets the time 
        System.out.println(time.get(ChronoField.CLOCK_HOUR_OF_DAY)); 
    } 
}
输出:
15

程序2:

// Java program to demonstrate the get() method 
  
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("25:30:30+01:00"); 
  
            // gets the time 
            System.out.println(time.get(ChronoField.CLOCK_HOUR_OF_DAY)); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
java.time.format.DateTimeParseException: Text '25:30:30+01:00' could not be parsed: Invalid value for HourOfDay (valid values 0 - 23): 25

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



相关用法


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