在ZonedDateTime類中,根據傳遞給它的參數,有兩種類型的with()方法。
with(TemporalAdjuster adjuster)
ZonedDateTime類的with(TemporalAdjuster Adjuster)方法用於調整此日期時間,調整後將返回調整後的日期時間的副本。使用指定的調整器策略對象進行調整。 ZonedDateTime的實例是不可變的,不受此方法調用的影響。
用法:
public ZonedDateTime with(TemporalAdjuster adjuster)
參數:該方法接受調節器作為要使用的調節器的參數。
返回值:此方法基於此返回已調整的ZonedDateTime。
異常:此方法引發以下異常:
- DateTimeException-如果無法進行調整。
- ArithmeticException-如果發生數字溢出。
以下示例程序旨在說明with()方法:
示例1:
// Java program to demonstrate
// ZonedDateTime.with() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zoneddatetime
= ZonedDateTime.parse(
"2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
// print instance
System.out.println("ZonedDateTime before"
+ " adjustment: "
+ zoneddatetime);
// apply with method of ZonedDateTime class
ZonedDateTime zt
= zoneddatetime
.with(Month.SEPTEMBER)
.with(TemporalAdjusters.firstDayOfMonth());
// print instance
System.out.println("ZonedDateTime after"
+ " adjustment: "
+ zt);
}
}
ZonedDateTime before adjustment: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta] ZonedDateTime after adjustment: 2018-09-01T19:21:12.123+05:30[Asia/Calcutta]
with(TemporalField field, long newValue)
with(TemporalField字段,長newValue)ZonedDateTime類的方法用於將指定字段設置為新值並返回新的日期時間的副本。此方法可用於更改任何受支持的字段,例如年,月或day-of-month。如果由於不支持該字段或其他原因而無法設置新值,則會引發異常。
在某些情況下,更改指定的字段可能會導致結果日期時間變為無效,例如將月份從1月31日更改為2月將使day-of-month無效。在這種情況下,該字段負責解決日期。通常,它將選擇上一個有效日期,在此示例中,該日期將是2月的最後一個有效日期。 ZonedDateTime的實例是不可變的,不受此方法調用的影響。
用法:
public ZonedDateTime with(TemporalField field, long newValue)
參數:此方法接受作為結果中要設置的字段的field和作為結果中該字段的新值的newValue。
返回值:該方法基於此方法並使用指定的字段集返回ZonedDateTime。
異常:此方法引發以下異常:
- DateTimeException-如果無法進行調整。
- UnsupportedTemporalTypeException-如果不支持該字段。
- ArithmeticException-如果發生數字溢出。
以下示例程序旨在說明with()方法:
示例1:
// Java program to demonstrate
// ZonedDateTime.with() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zoneddatetime
= ZonedDateTime.parse(
"2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
// print instance
System.out.println("ZonedDateTime before"
+ " applying method: "
+ zoneddatetime);
// apply with method of ZonedDateTime class
ZonedDateTime zt
= zoneddatetime.with(
ChronoField.HOUR_OF_DAY, 13);
// print instance
System.out.println("ZonedDateTime after"
+ " applying method: "
+ zt);
}
}
ZonedDateTime before applying method: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta] ZonedDateTime after applying method: 2018-12-06T13:21:12.123+05:30[Asia/Calcutta]
參考文獻:
https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#with(java.time.temporal.TemporalField, long)
相關用法
- Java ZonedDateTime until()用法及代碼示例
- Java ZonedDateTime plus()用法及代碼示例
- Java ZonedDateTime get()用法及代碼示例
- Java ZonedDateTime of()用法及代碼示例
- Java ZonedDateTime now()用法及代碼示例
- Java ZonedDateTime truncatedTo()用法及代碼示例
- Java ZonedDateTime range()用法及代碼示例
- Java ZonedDateTime minusMinutes()用法及代碼示例
- Java ZonedDateTime toLocalDateTime()用法及代碼示例
- Java ZonedDateTime minusDays()用法及代碼示例
- Java ZonedDateTime plusMonths()用法及代碼示例
- Java ZonedDateTime withFixedOffsetZone()用法及代碼示例
- Java ZonedDateTime withZoneSameLocal()用法及代碼示例
- Java ZonedDateTime withZoneSameInstant()用法及代碼示例
- Java ZonedDateTime minusSeconds()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 ZonedDateTime with() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。