Java中的 ZonedDateTime with() 方法及示例
在 ZonedDateTime 类中,根据传递给它的参数,有两种类型的 with() 方法。
with(TemporalAdjuster 调节器)
用于调整此日期时间的ZonedDateTime类的with(TemporalAdjusteradjuster)方法,调整后返回调整后的日期时间的副本。使用指定的调整器策略对象进行调整。此 ZonedDateTime 实例是不可变的,不受此方法调用的影响。
句法:
public ZonedDateTime with(TemporalAdjuster adjuster)
参数:此方法接受调节器作为要使用的调节器的参数。
返回值:此方法基于此返回一个 ZonedDateTime 并进行调整。
异常:此方法抛出以下异常:
- DateTimeException – 如果无法进行调整。
- ArithmeticException – 如果发生数字溢出。
下面的程序说明了 with() 方法:
方案一:
// 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)
ZonedDateTime类的with(TemporalField field, long newValue)方法,用于将指定字段设置为新值并返回新日期时间的副本。该方法可用于更改任何支持的字段,例如年、月或一个月中的某天。如果由于不支持该字段或由于某些其他原因而无法设置新值,则会引发异常。
在某些情况下,更改指定字段可能会导致生成的日期时间无效,例如将月份从 1 月 31 日更改为 2 月会使日期无效。在这种情况下,该字段负责解析日期。通常它会选择前一个有效日期,在本例中是二月的最后一个有效日期。此 ZonedDateTime 实例是不可变的,不受此方法调用的影响。
句法:
public ZonedDateTime with(TemporalField field, long newValue)
参数:此方法接受作为结果中要设置的字段的字段和结果中字段的新值作为参数的newValue 。
返回值:该方法基于此返回一个带有指定字段集的 ZonedDateTime。
异常:此方法抛出以下异常:
- DateTimeException – 如果无法进行调整。
- UnsupportedTemporalTypeException – 如果不支持该字段。
- ArithmeticException – 如果发生数字溢出。
下面的程序说明了 with() 方法:
方案一:
// 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 Java Java , long)
Java Java )