Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java의 시간 시간 필드는 무엇입니까?

<시간/>

시간 필드는 월-오-분 또는 시와 같은 날짜-시간 필드입니다. 이러한 필드는 TemporalField 인터페이스로 표시되며 ChronoField 클래스는 이 인터페이스를 구현합니다.

다음은 ChronoField 클래스가 지원하는 시간과 관련된 다양한 시간적 필드의 목록입니다. -

필드 설명
CLOCK_HOUR_OF_AMPM
이 필드는 하루 중 시계 시간(오전/오후)을 나타냅니다.
AMPM_OF_DAY
이 필드는 그날의 오후/오후를 나타냅니다.
CLOCK_HOUR_OF_DAY
이 필드는 하루 중 시계 시간을 나타냅니다.
HOUR_OF_AMPM
이 필드는 하루 중 시간(오전/오후)을 나타냅니다.
HOUR_OF_DAY
이 필드는 하루 중 시간을 나타냅니다.
INSTANT_SECONDS
이 필드는 인스턴트 에포크 초를 나타냅니다.
MICRO_OF_DAY
이 필드는 하루의 마이크로를 나타냅니다.
MICRO_OF_SECOND
이 필드는 1초의 마이크로를 나타냅니다.
MILLI_OF_DAY
이 필드는 하루의 밀리 단위를 나타냅니다.
MILLI_OF_SECOND
이 필드는 밀리초를 나타냅니다.
MINUTE_OF_DAY
이 필드는 하루의 분을 나타냅니다.
MINUTE_OF_HOUR
이 필드는 하루 중 시간을 나타냅니다.
MONTH_OF_YEAR
이 필드는 월을 나타냅니다.
NANO_OF_DAY
이 필드는 오늘의 나노를 나타냅니다.
NANO_OF_SECOND
이 필드는 초의 나노를 나타냅니다.
OFFSET_SECONDS
이 필드는 UTC/그리니치에서의 오프셋을 나타냅니다.
PROLEPTIC_MONTH
이 필드는 다산월을 나타냅니다.
SECOND_OF_DAY
이 필드는 하루의 초를 나타냅니다.
SECOND_OF_MINUTE
이 필드는 분의 초를 나타냅니다.

LocalDate 클래스의 get() 또는 getLong() 메서드는 시간 필드를 매개변수로 받아들이고 현재 객체에서 주어진 필드의 값을 가져옵니다.

예시

import java.time.LocalTime;
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 = lTime.get(ChronoField.CLOCK_HOUR_OF_AMPM);
      System.out.println("Hour of the day: "+field);
      field = lTime.get(ChronoField.AMPM_OF_DAY);
      System.out.println("Am or Pm: "+field);      
      field = lTime.get(ChronoField.CLOCK_HOUR_OF_DAY);
      System.out.println("Hour of the day: "+field);
      long epoch = lTime.getLong(ChronoField.MINUTE_OF_DAY);
      System.out.println("Minute of the day: "+epoch);
      field = lTime.get(ChronoField.MINUTE_OF_HOUR);
      System.out.println("Minutes of the hour: "+field);
      field = lTime.get(ChronoField.SECOND_OF_DAY);
      System.out.println("Seconds of the day: "+field);
      field = lTime.get(ChronoField.SECOND_OF_MINUTE);
      System.out.println("Seconds of the minute: "+field);
   }
}

출력

17:02:46.294
Hour of the day: 5
Am or Pm: 1
Hour of the day: 17
Minute of the day: 1022
Minutes of the hour: 2
Seconds of the day: 61366
Seconds of the minute: 46