java.time.LocalTime.with(TemporalAdjuster adjuster)方法

2019-10-16 22:45:49

java.time.LocalTime.with(TemporalAdjuster adjuster)方法返回此次調整後的副本。

宣告

以下是java.time.LocalTime.with(TemporalAdjuster adjuster)方法的宣告。

public LocalTime with(TemporalAdjuster adjuster)

引數

  • adjuster - 要使用的調整器,不能為null

返回值

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

異常

  • DateTimeException - 如果無法進行調整。
  • ArithmeticException - 如果發生數位溢位。

範例

以下範例顯示了java.time.LocalTime.with(TemporalAdjuster adjuster)方法的用法。

package com.yiibai;

import java.time.LocalTime;

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

      LocalTime date = LocalTime.parse("10:15:30");
      LocalTime result = date.with(LocalTime.NOON);
      System.out.println(result);  
   }
}

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

12:00