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

2019-10-16 22:47:17

java.time.LocalDateTime.with(TemporalAdjuster adjuster)方法返回此日期時間的調整副本。

宣告

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

public LocalDateTime with(TemporalAdjuster adjuster)

引數

adjuster - 要使用的調整器,而不是null

返回值

一個LocalDateTime基於此進行調整,而不是null

異常

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

範例

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

package com.yiibai;

import java.time.LocalDateTime;
import java.time.Month;
import java.time.temporal.TemporalAdjusters;

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

      LocalDateTime date = LocalDateTime.parse("2017-01-03T10:15:30");
      LocalDateTime result = date.with(Month.JULY).with(TemporalAdjusters.lastDayOfMonth());
      System.out.println(result);  
   }
}

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

2017-07-31T10:15:30