~/ learn/ java-from-zero/ cards/ LocalDate, LocalTime & LocalDateTime
1 of 4

Type a LocalDate created with of() and a plusDays call

Type a LocalDate created with of() and a plusDays call

Answer

LocalDate start = LocalDate.of(2024, 1, 15); LocalDate end = start.plusDays(30);

of() takes year, month (1-based, not 0-based), day. plusDays returns a new LocalDate — start is unchanged.

space flip · ← → navigate · esc to exit
NORMAL ~/memra/library/8fa37489-d406-4464-b339-c068afe9014a/flashcard utf-8 LF