java.time 주요 메서드 - LocalDate, LocalTime, LocalDateTime, ZonedDateTime, Period, Duration, ChronoUnit
Java/주요-클래스,메서드·2025. 9. 3.
java.timejava.time ├─ LocalDate ├─ LocalTime ├─ LocalDateTime ├─ ZonedDateTime ├─ Period ├─ Duration ├─ Instant ├─ ZoneId / ZoneOffset ├─ DayOfWeek / Month ├─ temporal / ChronoUnit └─ ...1. LocalDate 주요 메서드메서드설명예시now()현재 날짜LocalDate.now()of(y, m, d)특정 날짜 생성LocalDate.of(2025, 9, 3)getYear()연도 추출date.getYear()→ 2025getMonth()월 추출date.getMonth()→ DECEMBERgetDayOfMon..