java.time.Year.adjustInto()方法

2019-10-16 22:36:19

java.time.Year.adjustInto(Temporal temporal)方法將指定的時態物件調整為今年。

宣告

以下是java.time.Year.adjustInto(Temporal temporal)方法的宣告。

public Temporal adjustInto(Temporal temporal)

引數

  • temporal - 要調整的時間物件,而不是null

返回值
進行調整的相同型別的物件,不為null

異常

  • DateTimeException - 如果無法新增。
  • ArithmeticException - 如果發生數位溢位。

範例

以下範例顯示了java.time.Year.adjustInto(Temporal temporal)方法的用法。

package com.yiibai;

import java.time.LocalDate;
import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {

      Year year = Year.of(2015);

      LocalDate date = LocalDate.now();
      System.out.println(date);  

      date = (LocalDate)year.adjustInto(date);
      System.out.println(date);  
   }
}

編譯並執行上面的程式,這將產生以下結果 -

2017-04-01
2015-04-01