YearMonth get(TemporalField field) example

Description

YearMonth get(TemporalField field) gets the value of the specified field from this year-month as an int.

Syntax

get has the following syntax.


public int get(TemporalField field)

Example

The following example shows how to use get.


import java.time.YearMonth;
import java.time.temporal.ChronoField;
/*from www.  ja v a 2  s  .com*/
public class Main {
  public static void main(String[] args) {
    YearMonth y = YearMonth.now();
    long m = y.get(ChronoField.YEAR);
    System.out.println(m);

  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset