Java Date Time - LocalDate withMonth(int month) example








LocalDate withMonth(int month) returns a copy of this date with the month-of-year altered.

Syntax

withMonth has the following syntax.

public LocalDate withMonth(int month)

Example

The following example shows how to use withMonth.

import java.time.LocalDate;

public class Main {
  public static void main(String[] args) {
    LocalDate a = LocalDate.of(2014, 6, 30);
    LocalDate b = a.withMonth(10);
    System.out.println(b);
  }
}

The code above generates the following result.