시간 필드는 월(연도) 또는 시(분)와 같은 날짜/시간 필드입니다. 이러한 필드는 ChronoField 클래스가 구현하는 TemporalField 인터페이스로 표시됩니다.
ChronoField 클래스에서 지원하는 다양한 시간 필드 목록은 다음과 같습니다. -
필드 | 설명 |
---|---|
ALIGNED_DAY_OF_WEEK_IN_MONTH | 이 필드는 몇 일. |
이 필드는 연중 정렬된 요일을 나타냅니다. | |
ALIGNED_WEEK_OF_MONTH | 이 필드는 해당 월의 정렬된 주를 나타냅니다. |
ALIGNED_WEEK_OF_YEAR | 이 필드는 정렬된 기념일을 나타냅니다. |
DAY_OF_MONTH | 이 필드는 해당 월의 날짜를 나타냅니다. |
DAY_OF_WEEK | 이 필드는 요일을 나타냅니다. |
DAY_OF_YEAR | 이 필드는 해당 연도의 날짜를 나타냅니다. |
EPOCH_DAY | 이 필드는 해당 연도의 신기원일을 나타냅니다. |
ERA | 이 필드는 올해의 연대를 나타냅니다. |
Year | 이 필드는 연도를 나타냅니다. |
YEAR_OF_ERA | 이 필드는 해당 시대의 연도를 나타냅니다. |
LocalDate 및 LocaldateTime 클래스의 get() 또는 getLong() 메서드는 시간 필드를 매개변수로 받아들이고 현재 개체에서 지정된 필드의 값을 가져옵니다.
Live Demo
import java.time.LocalDate; import java.time.temporal.ChronoField; public class Demo { public static void main(String args[]) { //Instantiating the LocalDate class LocalDate lDate = LocalDate.now(); int field = lDate.get(ChronoField.DAY_OF_MONTH); System.out.println("Day of the month: "+field); field = lDate.get(ChronoField.DAY_OF_WEEK); System.out.println("Day of the month: "+field); field = lDate.get(ChronoField.DAY_OF_YEAR); System.out.println("Day of the month: "+field); long epoch = lDate.getLong(ChronoField.EPOCH_DAY); System.out.println("Day of the month: "+epoch); field = lDate.get(ChronoField.ALIGNED_DAY_OF_WEEK_IN_MONTH); System.out.println("Week in the month: "+field); field = lDate.get(ChronoField.ALIGNED_DAY_OF_WEEK_IN_YEAR); System.out.println("Day of the week in an year: "+field); field = lDate.get(ChronoField.ERA); System.out.println("Era: "+field); } }
Day of the month: 11 Day of the month: 3 Day of the month: 316 Day of the month: 18577 Week in the month: 4 Day of the week in an year: 1 Era: 1
Live Demo
import java.time.DayOfWeek; import java.time.LocalTime; import java.time.Month; import java.time.Year; import java.time.temporal.ChronoField; public class Demo { public static void main(String args[]) { //Instantiating the LocalDateTime class LocalTime lTime = LocalTime.now(); System.out.println(lTime); int field = Year.of(2019).get(ChronoField.YEAR); System.out.println("Year: "+field); field = Month.of(8).get(ChronoField.MONTH_OF_YEAR); System.out.println("Year: "+field); field = DayOfWeek.of(3).get(ChronoField.DAY_OF_WEEK); System.out.println("Year: "+field); } }
20:01:43.171 Year: 2019 Year: 8 Year: 3
위 내용은 Java의 날짜/시간 필드란 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!