首頁  >  文章  >  Java  >  什麼是Java中的日期時間欄位?

什麼是Java中的日期時間欄位?

王林
王林轉載
2023-09-04 14:41:061334瀏覽

什麼是Java中的日期時間欄位?

時間字段是日期時間字段,例如一年中的月份或分鐘中的小時。這些欄位由 TemporalField 介面表示,ChronoField 類別實作該介面。

以下是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_OF_ERA

#該欄位代表時代的年份。

LocalDate 和LocaldateTime 類別的get() 或getLong() 方法接受時間欄位為參數,並取得目前物件中給定欄位的值。

範例

現場示範

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

範例

「現場示範

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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除