LocalDate withMonth(int month)
returns a copy of this date with the
month-of-year altered.
withMonth
has the following syntax.
public LocalDate withMonth(int month)
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.