java.time.OffsetDateTime.truncatedTo(TemporalUnit unit)
方法返回此OffsetDateTime
的副本,並截斷時間。
以下是java.time.OffsetDateTime.truncatedTo(TemporalUnit unit)
方法的宣告。
public OffsetDateTime truncatedTo(TemporalUnit unit)
unit
- 要截斷的單位,而不是null
。基於此日期時間截斷時間的OffsetDateTime
,不為null
。
DateTimeException
- 如果無法截斷。UnsupportedTemporalTypeException
- 如果不支援該單位。以下範例顯示了java.time.OffsetDateTime.truncatedTo(TemporalUnit unit)
方法的用法。
package com.yiibai;
import java.time.OffsetDateTime;
import java.time.temporal.ChronoUnit;
public class OffsetDateTimeDemo {
public static void main(String[] args) {
OffsetDateTime date = OffsetDateTime.now();
System.out.println(date.truncatedTo(ChronoUnit.DAYS));
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-03-21T00:00+05:30