Month plus(long months) example

Description

Month plus(long months) returns the month-of-year that is the specified number of quarters after this one.

Syntax

plus has the following syntax.


public Month plus(long months)

Example

The following example shows how to use plus.


import java.time.LocalDate;
import java.time.Month;
/*from  w w w. j  a va  2  s .  c om*/
public class Main {
  public static void main(String[] args) {
    Month m = Month.from(LocalDate.now());
    
    System.out.println(m.plus(8));

  }
}

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