java.time.OffsetTime.with() 方法

描述

java.time.OffsetTime.with(TemporalAdjusteradjuster) 方法返回此时间的调整副本。


声明

以下是 java.time.OffsetTime.with(TemporalAdjuster adjuster) 方法的声明。

public OffsetTime with(TemporalAdjuster adjuster)

参数

adjuster − 要使用的调节器,不为空。


返回值

在此基础上进行调整的 OffsetTime,不为空。


异常

  • DateTimeException − 如果无法进行调整。

  • ArithmeticException − 如果发生数字溢出。


示例

下面的例子展示了 java.time.OffsetTime.with(TemporalAdjuster adjuster) 方法的使用。

package com.tutorialspoint;

import java.time.LocalTime;
import java.time.OffsetTime;

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

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

12:00+01:00