📌  相关文章
📜  Java中的 ZonedDateTime withSecond() 方法及示例

📅  最后修改于: 2022-05-13 01:55:05.677000             🧑  作者: Mango

Java中的 ZonedDateTime withSecond() 方法及示例

ZonedDateTime类的withSecond()方法,用于更改此 ZonedDateTime 中的秒并在此操作后返回 ZonedDateTime 的副本。此方法在本地时间线上运行,更改本地的秒字段date-time 并且在此操作之后本地 date-time 被转换回 ZonedDateTime,使用区域 ID 获取偏移量。转换回 ZonedDateTime 时,如果本地日期时间重叠,则尽可能保留偏移量,否则将使用较早的偏移量。此实例是不可变的,不受此方法调用的影响。

句法:

public ZonedDateTime withSecond(int second)

参数:此方法接受单个参数second ,它表示要在结果中设置的秒数,从 0 到 59。

返回值:此方法基于此日期时间和请求的秒数返回ZonedDateTime

异常:如果第二个值无效,此方法将抛出DateTimeException

下面的程序说明了 withSecond() 方法:
方案一:

// Java program to demonstrate
// ZonedDateTime.withSecond() method
  
import java.time.*;
  
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"
                           + " alter second: "
                           + zoneddatetime);
  
        // alter second to 40
        ZonedDateTime returnvalue
            = zoneddatetime.withSecond(40);
  
        // print result
        System.out.println("ZonedDateTime after "
                           + "alter second: "
                           + returnvalue);
    }
}
输出:

方案二:

// Java program to demonstrate
// ZonedDateTime.withSecond() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ZonedDateTime object
        ZonedDateTime zoneddatetime
            = ZonedDateTime.parse(
                "2018-10-25T23:12:31.123+02:00[Europe/Paris]");
  
        // print instance
        System.out.println("ZonedDateTime before"
                           + " alter second: "
                           + zoneddatetime);
  
        // alter second to 0
        ZonedDateTime returnvalue
            = zoneddatetime.withSecond(0);
  
        // print result
        System.out.println("ZonedDateTime after "
                           + "alter second: "
                           + returnvalue);
    }
}
输出:

参考: https: Java/time/ZonedDateTime.html#withSecond(int)