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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。