📅  最后修改于: 2023-12-03 14:42:50.737000             🧑  作者: Mango
withSecond()
方法是 Java OffsetDateTime 类的一个实例方法,用于生成一个基于当前 OffsetDateTime 实例并且指定了秒数的新实例。该方法返回一个 OffsetDateTime 类型对象。
public OffsetDateTime withSecond(int second)
import java.time.OffsetDateTime;
public class OffsetDateTimeWithSecondExample {
public static void main(String[] args) {
// 当前时间
OffsetDateTime currentDateTime = OffsetDateTime.now();
System.out.println("当前日期时间:" + currentDateTime);
// 设置为指定秒之后的时间
OffsetDateTime newDateTime = currentDateTime.withSecond(30);
System.out.println("更改秒后的日期时间:" + newDateTime);
}
}
当前日期时间:2022-08-22T14:25:45.876334700+08:00
更改秒后的日期时间:2022-08-22T14:26:30.876334700+08:00