- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 时长
- java.time - 时刻
- java.time - 本地日期
- java.time - 本地日期时间
- java.time - 本地时间
- java.time - 月天
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 周期
- java.time - 年
- java.time - 年月
- java.time - 区域性日期时间
- java.time - 区域标识符
- java.time - 区域偏移量
- java.time 包枚举
- java.time - 月份
- java.time 有用资源
- java.time - 讨论
java.time.YearMonth.adjustInto() 方法示例
描述
java.time.YearMonth.adjustInto(Temporal temporal) 方法将指定的时间对象调整为该年-月。
声明
以下是 java.time.YearMonth.adjustInto(Temporal temporal) 方法的声明。
public Temporal adjustInto(Temporal temporal)
参数
temporal - 要调整的时间对象(非空)。
返回值
已进行调整的相同类型的对象(非空)。
异常
DateTimeException - 如果无法添加。
ArithmeticException - 如果发生数字溢出。
示例
以下示例展示了 java.time.YearMonth.adjustInto(Temporal temporal) 方法的用法。
package com.tutorialspoint; import java.time.LocalDate; import java.time.YearMonth; public class YearMonthDemo { public static void main(String[] args) { YearMonth year = YearMonth.of(2015,12); LocalDate date = LocalDate.now(); System.out.println(date); date = (LocalDate)year.adjustInto(date); System.out.println(date); } }
让我们编译并运行上面的程序,它将会产生以下结果: -
2017-03-27 2015-12-27
广告