Java year with()方法及实例
在Year类中,根据传递给它的参数,有两种类型的with()方法。
with(TemporalAdjuster adjuster)
Year 类的 with(TemporalAdjuster adjuster) 方法用于使用TemporalAdjuster来调整这个Year,调整后返回调整后的Year的副本。Year的这个实例是不可改变的,不受这个方法调用的影响。
语法
public Year with(TemporalAdjuster adjuster)
参数: 该方法接受 调整器 作为参数,它是要使用的调整器。
返回值: 该方法在此基础上返回一个调整后的年份。
异常: 该方法抛出以下异常。
- DateTimeException – 如果不能进行调整。
- ArithmeticException – 如果发生数字溢出。
以下程序说明了with()方法:
程序1 :
// Java program to demonstrate
// Year.with() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a Year object
Year yr
= Year.of(2019);
// print instance
System.out.println("Year before"
+ " adjustment: "
+ yr);
// apply with method of Year class
Year updatedlocal = yr.with(Year.of(2012));
// print instance
System.out.println("Year after"
+ " adjustment: "
+ updatedlocal);
}
}
输出。
Year before adjustment: 2019
Year after adjustment: 2012
with(TemporalField field, long newValue)
Year 类的 with(TemporalField field, long newValue) 方法用于将指定的Year字段设置为一个新值,并返回新时间的副本。这个方法可以用来改变任何支持的字段,例如year。如果由于该字段不被支持或其他原因而无法设置新值,则会抛出一个异常。Year的这个实例是不可改变的,不受这个方法调用的影响。
语法
public Year with(TemporalField field, long newValue)
参数: 该方法接受 field 和 newValue 作为参数,前者是要在结果中设置的字段,后者是结果中该字段的新值。
返回值: 该方法在此基础上返回一个设置了指定字段的年份。
异常: 该方法会抛出以下异常。
- DateTimeException – 如果不能进行调整。
- UnsupportedTemporalTypeException – 如果该字段不被支持。
- ArithmeticException – 如果发生数字溢出。
以下程序说明了with()方法:
程序1 :
// Java program to demonstrate
// Year.with() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a Year object
Year yr
= Year.of(2019);
// print instance
System.out.println("Year before"
+ " applying method: "
+ yr);
// apply with method of Year class
Year updatedlocal
= yr.with(ChronoField.YEAR, 2100);
// print instance
System.out.println("Year after"
+ " applying method: "
+ updatedlocal);
}
}
输出。
Year before applying method: 2019
Year after applying method: 2100
参考文献:
https://docs.oracle.com/javase/10/docs/api/java/time/Year.html#with(java.time.temporal.TemporalAdjuster)
https://docs.oracle.com/javase/10/docs/api/java/time/Year.html#with(java.time.temporal.TemporalField, long)