java.time.YearMonth.get() 方法示例



说明

java.time.YearMonth.get(TemporalField field) 方法获取请求字段的值。

声明

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

public long get(TemporalField field)

参数

field − 要返回其值的 TemporalField。

返回值

单位的长整型值。

异常

  • DateTimeException − 如果不支持该单位。

  • UnsupportedTemporalTypeException − 如果不支持该单位。

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

示例

以下示例显示了 java.time.YearMonth.get(TemporalField field) 方法的用法。

package com.tutorialspoint;

import java.time.YearMonth;
import java.time.temporal.ChronoField;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth date = YearMonth.of(2017,12);
      System.out.println(date.get(ChronoField.YEAR_OF_ERA));
   }
}

让我们编译并运行上述程序,这将生成以下结果 −

2017
广告