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