当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.time.OffsetTime.withSecond()用法及代码示例



描述

这个java.time.OffsetTime.withSecond(int second)方法返回此 OffsetTime 的副本,其中 second-of-minute 已更改。

声明

以下是声明java.time.OffsetTime.withSecond(int second)方法。

public OffsetTime withSecond(int second)

参数

second- 要在结果中设置的 second-of-minute,从 0 到 59。

返回值

基于此日期和请求的秒的 OffsetTime,不为空。

异常

DateTimeException− 如果 second-of-minute 值无效。

示例

下面的例子展示了 java.time.OffsetTime.withSecond(int second) 方法的用法。

package com.tutorialspoint;

import java.time.OffsetTime;

public class OffsetTimeDemo {
   public static void main(String[] args) {
      
      OffsetTime time = OffsetTime.parse("10:15:30+01:00");
      OffsetTime result = time.withSecond(20);
      System.out.println(result);  
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

10:15:20+01:00

相关用法


注:本文由纯净天空筛选整理自 java.time.OffsetTime.withSecond() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。