在YearMonth類中,根據傳遞給它的參數,有兩種類型的with()方法。
with(TemporalAdjuster adjuster)
YearMonth類的with(TemporalAdjuster Adjuster)方法用於使用TemporalAdjuster調整本YearMonth,並在調整後返回調整後Yearyear的副本。使用指定的調整器策略對象進行調整。 YearMonth的實例是不可變的,並且不受此方法調用的影響。
用法:
public YearMonth with(TemporalAdjuster adjuster)
參數:該方法接受調節器作為要使用的調節器的參數。
返回值:此方法基於此並返回YearMonth並進行了調整。
異常:此方法引發以下異常:
- DateTimeException-如果無法進行調整。
- ArithmeticException-如果發生數字溢出。
以下示例程序旨在說明with()方法:
示例1:
// Java program to demonstrate
// YearMonth.with() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a YearMonth object
YearMonth yr
= YearMonth.of(2019, 12);
// print instance
System.out.println("YearMonth before"
+ " adjustment: "
+ yr);
// apply with method of YearMonth class
YearMonth updatedlocal
= yr.with(YearMonth.of(2012, 12));
// print instance
System.out.println("YearMonth after"
+ " adjustment: "
+ updatedlocal);
}
}
YearMonth before adjustment: 2019-12 YearMonth after adjustment: 2012-12
with(TemporalField field, long newValue)
YearMonth類的with(TemporalField field,long newValue)方法用於將YearMonth的指定字段設置為新值並返回新時間的副本。此方法可用於更改任何受支持的字段,例如年或月。如果由於不支持該字段或其他原因而無法設置新值,則會引發異常。 YearMonth的實例是不可變的,並且不受此方法調用的影響。
用法:
public YearMonth with(TemporalField field, long newValue)
參數:此方法接受作為結果中要設置的字段的field和作為結果中該字段的新值的newValue。
返回值:此方法基於此返回YearMonth並具有指定的字段集。
異常:此方法引發以下異常:
- DateTimeException-如果無法進行調整。
- UnsupportedTemporalTypeException-如果不支持該字段。
- ArithmeticException-如果發生數字溢出。
以下示例程序旨在說明with()方法:
示例1:
// Java program to demonstrate
// YearMonth.with() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a YearMonth object
YearMonth yr
= YearMonth.of(2019, 12);
// print instance
System.out.println("YearMonth before"
+ " applying method: "
+ yr);
// apply with method of YearMonth class
YearMonth updatedlocal
= yr.with(ChronoField.YEAR, 2100);
// print instance
System.out.println("YearMonth after"
+ " applying method: "
+ updatedlocal);
}
}
YearMonth before applying method: 2019-12 YearMonth after applying method: 2100-12
參考文獻:
https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#with(java.time.temporal.TemporalAdjuster)
https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#with(java.time.temporal.TemporalField,長)
相關用法
- Java YearMonth until()用法及代碼示例
- Java YearMonth withYear()用法及代碼示例
- Java YearMonth isAfter()用法及代碼示例
- Java YearMonth plus(TemporalAmount)用法及代碼示例
- Java YearMonth range()用法及代碼示例
- Java YearMonth isBefore()用法及代碼示例
- Java YearMonth query()用法及代碼示例
- Java YearMonth isValidDay()用法及代碼示例
- Java YearMonth lengthOfYear()用法及代碼示例
- Java YearMonth isLeapYear()用法及代碼示例
- Java YearMonth withMonth()用法及代碼示例
- Java YearMonth parse(CharSequence)用法及代碼示例
- Java YearMonth minus(TemporalAmount)用法及代碼示例
- Java YearMonth isSupported(TemporalField)用法及代碼示例
- Java YearMonth isSupported(TemporalUnit)用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 YearMonth with() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。