LocalDate withDayOfMonth(int dayOfMonth) example
Description
LocalDate withDayOfMonth(int dayOfMonth)
returns a copy of this
date with the day-of-month altered.
Syntax
withDayOfMonth
has the following syntax.
public LocalDate withDayOfMonth(int dayOfMonth)
Example
The following example shows how to use withDayOfMonth
.
import java.time.LocalDate;
/*from w w w. j a va2 s . c om*/
public class Main {
public static void main(String[] args) {
LocalDate a = LocalDate.of(2014, 6, 30);
LocalDate b = a.withDayOfMonth(10);
System.out.println(b);
}
}
The code above generates the following result.