java.time.YearMonth.with(TemporalField field, long newValue)方法

2019-10-16 22:36:10

java.time.YearMonth.with(TemporalField field,long newValue)方法返回此日期的副本,並將指定欄位設定為新值。

宣告

以下是java.time.YearMonth.with(TemporalField field,long newValue)方法的宣告。

public YearMonth with(TemporalField field, long newValue)

引數

  • field - 要在結果中設定的欄位,不為null
  • newValue - 結果中欄位的新值。

返回值

基於此YearMonth進行調整的YearMonth,而不是null

例外

  • DateTimeException - 如果無法進行調整。
  • UnsupportedTemporalTypeException - 如果不支援該欄位。
  • ArithmeticException - 如果發生數位溢位。

範例

以下範例顯示了java.time.YearMonth.with(TemporalField field,long newValue)方法的用法。

package com.yiibai;

import java.time.YearMonth;
import java.time.temporal.ChronoField;

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

      YearMonth date = YearMonth.parse("2017-12");
      YearMonth result = date.with(ChronoField.YEAR,2013);
      System.out.println(result);  
   }
}

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

2013-12