LocalDate withMonth(int month) example
Description
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;
// w ww . j a v a 2 s . c om
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.