java.time.LocalDateTime.getLong() 方法示例



描述

java.time.LocalDateTime.getLong(TemporalField field) 方法从该日期时间获取指定字段的 long 类型值。

声明

以下是 java.time.LocalDateTime.getLong(TemporalField field) 方法的声明。

public long getLong(TemporalField field)

参数

field − 要获取的字段,不能为空。

返回值

字段的值。

异常

  • DateTimeException − 如果无法获取字段的值,或者该值超出了字段的有效值范围。

  • UnsupportedTemporalTypeException − 如果字段不受支持,或者值范围超出了 long 类型。

  • ArithmeticException − 如果发生了数值溢出

示例

以下示例展示了 java.time.LocalDateTime.getLong(TemporalField field) 方法的使用方法。

package com.tutorialspoint;

import java.time.LocalDateTime;
import java.time.temporal.ChronoField;

public class LocalDateTimeDemo {
   public static void main(String[] args) {
 
      LocalDateTime date = LocalDateTime.parse("2017-02-03T12:30:30");
      System.out.println(date.getLong(ChronoField.CLOCK_HOUR_OF_DAY));  
   }
}

编译并运行以上程序,它将产生以下结果 −

12
广告