java.time.OffsetDateTime.with(TemporalAdjuster adjuster)
方法返回此日期時間的調整副本。
以下是java.time.OffsetDateTime.with(TemporalAdjuster adjuster)
方法的宣告。
public OffsetDateTime with(TemporalAdjuster adjuster)
adjuster
- 要使用的調整器,而不是null
。一個OffsetDateTime
基於此進行調整,而不是null
。
DateTimeException
- 如果無法進行調整。ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.OffsetDateTime.with(TemporalAdjuster adjuster)
方法的用法。
package com.yiibai;
import java.time.OffsetDateTime;
import java.time.Month;
import java.time.temporal.TemporalAdjusters;
public class OffsetDateTimeDemo {
public static void main(String[] args) {
OffsetDateTime date = OffsetDateTime.parse("2017-01-03T10:15:30+01:00");
OffsetDateTime result = date.with(Month.JULY).with(TemporalAdjusters.lastDayOfMonth());
System.out.println(result);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-07-31T10:15:30+01:00