LocalDate withDayOfMonth(int dayOfMonth)
returns a copy of this
date with the day-of-month altered.
withDayOfMonth
has the following syntax.
public LocalDate withDayOfMonth(int dayOfMonth)
The following example shows how to use withDayOfMonth
.
import java.time.LocalDate; 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.