java 8 date time1 자바8 날짜 및 시간 API 간략 정리 Java 날짜와 시간 정리 코드 확인 자바 8에서 새롭게 도입된 날짜와 시간 API 클래스 특징 불변 객체 Thread Safe LocalDate 날짜 @Test void localDate() { LocalDate localDate = LocalDate.of(2024, 2, 17); System.out.println("localDate = " + localDate); LocalDate now = LocalDate.now(); System.out.println("now = " + now); int year = now.getYear(); int month = now.getMonthValue(); int day = now.getDayOfMonth(); System.out.println("year = " + y.. 2024. 2. 18. 이전 1 다음