Java의 날짜/시간 필드란 무엇입니까?

王林
풀어 주다: 2023-09-04 14:41:06
앞으로
1286명이 탐색했습니다.

Java의 날짜/시간 필드란 무엇입니까?

시간 필드는 월(연도) 또는 시(분)와 같은 날짜/시간 필드입니다. 이러한 필드는 ChronoField 클래스가 구현하는 TemporalField 인터페이스로 표시됩니다.

ChronoField 클래스에서 지원하는 다양한 시간 필드 목록은 다음과 같습니다. -

ALIGNED_DAY_OF_WEEK_IN_YEAR
필드 설명
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() 메서드는 시간 필드를 매개변수로 받아들이고 현재 개체에서 지정된 필드의 값을 가져옵니다.

Example

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); } }
로그인 후 복사

Output

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
로그인 후 복사

Example

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); } }
로그인 후 복사

Output

20:01:43.171 Year: 2019 Year: 8 Year: 3
로그인 후 복사

위 내용은 Java의 날짜/시간 필드란 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:tutorialspoint.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!