- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - Instant
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - Period
- java.time - Year
- java.time - YearMonth
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time 包枚举值
- java.time - 月份
- java.time 实用资源
- java.time - 讨论
java.time.MonthDay.adjustInto() 方法示例
说明
java.time.MonthDay.adjustInto(Temporal temporal) 方法调整指定的时间对象以获取此月天。
声明
以下是 java.time.MonthDay.adjustInto(Temporal temporal) 方法的声明。
public Temporal adjustInto(Temporal temporal)
```java
参数
temporal - 要调整的目标对象,不能为空。
返回值
调整后的对象(非 null)。
异常
DateTimeException - 如果无法进行调整。
ArithmeticException - 如果发生数值溢出。
示例
package com.tutorialspoint; import java.time.MonthDay; import java.time.ZonedDateTime; public class MonthDayDemo { public static void main(String[] args) { ZonedDateTime date = ZonedDateTime.now(); System.out.println(date); MonthDay date1 = MonthDay.parse("--12-30"); date = (ZonedDateTime)date1.adjustInto(date); System.out.println(date); } }
实时演示
2017-03-20T15:29:58.470+05:30[Asia/Calcutta] 2017-12-30T15:29:58.470+05:30[Asia/Calcutta]
打印页面