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

2019-10-16 22:45:50

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

宣告

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

public LocalTime with(TemporalField field, long newValue)

引數

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

返回值

基於此的LocalTime進行調整,不能為null

異常

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

範例

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

package com.yiibai;

import java.time.LocalTime;
import java.time.temporal.ChronoField;

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

      LocalTime date = LocalTime.parse("10:15:30");
      LocalTime result = date.with(ChronoField.HOUR_OF_DAY,13);
      System.out.println(result);  
   }
}

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

13:15:30