java.time.LocalTime.adjustInto() 方法示例



描述

java.time.LocalTime.adjustInto(Temporal temporal) 方法可调整指定的时间对象,使其与当前对象具有相同的时间。

声明

以下是 java.time.LocalTime.adjustInto(Temporal temporal) 方法的声明。

public Temporal adjustInto(Temporal temporal)

参数

temporal - 要调整的目标对象,不能为空。

返回值

调整后的对象,不能为空。

异常

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

  • ArithmeticException - 如果出现数值溢出。

示例

以下示例演示了 java.time.LocalTime.adjustInto(Temporal temporal) 方法的用法。

package com.tutorialspoint;

import java.time.LocalTime;
import java.time.ZonedDateTime;

public class LocalTimeDemo {
   public static void main(String[] args) {

      ZonedDateTime date = ZonedDateTime.now();
      System.out.println(date);  

      LocalTime date1 = LocalTime.parse("12:30:30");
      date = (ZonedDateTime)date1.adjustInto(date);
      System.out.println(date);  
   }
}

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

2017-03-20T11:52:58.297+05:30[Asia/Calcutta]
2017-03-20T12:30:30+05:30[Asia/Calcutta]
广告