Java Date Time - YearMonth getLong(TemporalField field) example








YearMonth getLong(TemporalField field) gets the value of the specified field from this year-month as a long.

Syntax

getLong has the following syntax.

public long getLong(TemporalField field)

Example

The following example shows how to use getLong.

import java.time.YearMonth;
import java.time.temporal.ChronoField;
//from  w  w w . j  av  a  2s  .  c o  m
public class Main {
  public static void main(String[] args) {
    YearMonth y = YearMonth.now();
    long m = y.getLong(ChronoField.YEAR);
    System.out.println(m);

  }
}

The code above generates the following result.