當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java LocalDateTime get()用法及代碼示例


LocalDateTime類get()方法

  • get() 方法可在java.time包。
  • get() 方法用於從此日期時間對象獲取給定字段的值。
  • get() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • get() 方法可能在給定字段返回值時拋出異常。
    • DateTimeException - 當無法生成給定字段時,可能會拋出此異常。
    • UnsupportedTemporalTypeException - 當給定字段不受支持時,可能會拋出此異常。
    • ArithmeticException - 當計算結果超出限製時可能會拋出此異常。

用法:

    public int get(TemporalField t_field);

參數:

  • TemporalField t_field- 表示返回值的時間字段。

返回值:

這個方法的返回類型是int,它從這個日期時間返回給定時間字段的值。

例:

// Java program to demonstrate the example 
// of get(TemporalField t_field) method 
// of LocalDateTime

import java.time.*;
import java.time.temporal.*;

public class GetOfLocalDateTime {
    public static void main(String args[]) {
        // Instantiates two LocalDateTime
        LocalDateTime da_ti1 = LocalDateTime.parse("2005-10-05T10:10:10");
        LocalDateTime da_ti2 = LocalDateTime.now();

        // Display da_ti1, da_ti2
        System.out.println("LocalDateTime da_ti1 and da_ti2:");
        System.out.println("da_ti1:" + da_ti1);
        System.out.println("da_ti2:" + da_ti2);

        System.out.println();

        // Here, this method gets the value
        // for the given field from this date-time
        // i.e. we are getting the field value
        // MONTH_OF_YEAR from this da_ti1
        int get_val = da_ti1.get(ChronoField.MONTH_OF_YEAR);

        // Display get_val
        System.out.println("da_ti1.get(ChronoField.MONTH_OF_YEAR):" + get_val);

        // Here, this method gets the value for the
        // given field from this date-time
        // i.e. we are getting the field value
        // MICRO_OF_SECOND from this da_ti2
        get_val = da_ti2.get(ChronoField.MICRO_OF_SECOND);

        // Display get_val
        System.out.println("da_ti2.get(ChronoField.MICRO_OF_SECOND):" + get_val);
    }
}

輸出

LocalDateTime da_ti1 and da_ti2:
da_ti1:2005-10-05T10:10:10
da_ti2:2020-06-05T02:20:56.040348

da_ti1.get(ChronoField.MONTH_OF_YEAR):10
da_ti2.get(ChronoField.MICRO_OF_SECOND):40348


相關用法


注:本文由純淨天空篩選整理自 Java LocalDateTime Class | get() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。