YearMonth getMonthValue() example

Description

YearMonth getMonthValue() gets the month-of-year field from 1 to 12.

Syntax

getMonthValue has the following syntax.


public int getMonthValue()

Example

The following example shows how to use getMonthValue.


import java.time.YearMonth;
//from   w ww  .j a  v  a2  s  .c  om
public class Main {
  public static void main(String[] args) {
    YearMonth y = YearMonth.now();
    int m = y.getMonthValue();
    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