Java Date Time - OffsetDateTime plusMonths(long months) example








OffsetDateTime plusMonths(long months) returns a copy of this OffsetDateTime with the specified period in months added.

Syntax

plusMonths has the following syntax.

public OffsetDateTime plusMonths(long months)

Example

The following example shows how to use plusMonths.

import java.time.OffsetDateTime;

public class Main {
  public static void main(String[] args) {
    OffsetDateTime o = OffsetDateTime.now();
    OffsetDateTime d =  o.plusMonths(20);
    System.out.println(d);
  }
}

The code above generates the following result.