在LocalDateTime类中,根据传递给它的参数,有两种类型的with()方法。
with(TemporalAdjuster adjuster)
LocalDateTime类的with(TemporalAdjuster Adjuster)方法用于使用TemporalAdjuster调整此日期时间,并且在调整后返回调整后的日期时间的副本。使用指定的调整器策略对象进行调整。此LocalDateTime实例是不可变的,不受此方法调用的影响。一个简单的调节器用于设置一个字段,例如Year字段,而更复杂的调节器可能将时间设置为一年的最后一天。
用法:
public LocalDateTime with(TemporalAdjuster adjuster)
参数:该方法接受调节器作为要使用的调节器的参数。
返回值:此方法基于此返回的LocalDateTime进行调整。
异常:此方法引发以下异常:
- DateTimeException–如果无法进行调整。
- ArithmeticException–如果发生数字溢出。
以下示例程序旨在说明with()方法:
示例1:
// Java program to demonstrate
// LocalDateTime.with() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a LocalDateTime object
LocalDateTime local
= LocalDateTime.parse(
"2020-12-31T10:15:30");
// print instance
System.out.println("LocalDateTime before"
+ " adjustment: "
+ local);
// apply with method of LocalDateTime class
LocalDateTime updatedlocal
= local.with(Month.OCTOBER)
.with(TemporalAdjusters
.firstDayOfMonth());
// print instance
System.out.println("LocalDateTime after"
+ " adjustment: "
+ updatedlocal);
}
}
LocalDateTime before adjustment: 2020-12-31T10:15:30 LocalDateTime after adjustment: 2020-10-01T10:15:30
with(TemporalField field, long newValue)
LocalDateTime类的with(TemporalField field,long newValue)方法用于将LocalDateTime的指定字段设置为新值并返回新时间的副本。此方法可用于更改任何受支持的字段,例如年,日,月,小时,分钟或秒。如果由于不支持该字段或其他原因而无法设置新值,则会引发异常。此LocalDateTime实例是不可变的,不受此方法调用的影响。
用法:
public LocalDateTime with(TemporalField field, long newValue)
参数:此方法接受作为结果中要设置的字段的field和作为结果中该字段的新值的newValue。
返回值:该方法基于此方法并使用指定的字段集返回LocalDateTime。
异常:此方法引发以下异常:
- DateTimeException–如果无法进行调整。
- UnsupportedTemporalTypeException–如果不支持该字段。
- ArithmeticException–如果发生数字溢出。
以下示例程序旨在说明with()方法:
示例1:
// Java program to demonstrate
// LocalDateTime.with() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a LocalDateTime object
LocalDateTime local
= LocalDateTime.parse(
"2021-01-01T19:55:30");
// print instance
System.out.println("LocalDateTime before"
+ " applying method: "
+ local);
// apply with method of LocalDateTime class
LocalDateTime updatedlocal
= local.with(ChronoField.YEAR, 2017);
// print instance
System.out.println("LocalDateTime after"
+ " applying method: "
+ updatedlocal);
}
}
LocalDateTime before applying method: 2021-01-01T19:55:30 LocalDateTime after applying method: 2017-01-01T19:55:30
参考文献:
https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#with(java.time.temporal.TemporalAdjuster)
https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#with(java.time.temporal.TemporalField,长)
相关用法
- Java LocalDateTime plus()用法及代码示例
- Java LocalDateTime until()用法及代码示例
- Java LocalDateTime from()用法及代码示例
- Java LocalDateTime now()用法及代码示例
- Java LocalDateTime compareTo()用法及代码示例
- Java LocalDateTime isBefore()用法及代码示例
- Java LocalDateTime query()用法及代码示例
- Java LocalDateTime plusMinutes()用法及代码示例
- Java LocalDateTime isEqual()用法及代码示例
- Java LocalDateTime parse()用法及代码示例
- Java LocalDateTime getDayOfWeek()用法及代码示例
- Java LocalDateTime getDayOfMonth()用法及代码示例
- Java LocalDateTime getHour()用法及代码示例
- Java LocalDateTime getSecond()用法及代码示例
- Java LocalDateTime isAfter()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 LocalDateTime with() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。