java.time.MonthDay adjustInto()方法
java.time.MonthDay.adjustInto(Temporal temporal)方法将指定的时间对象调整为具有此月-日。
1 语法
public Temporal adjustInto(Temporal temporal)
2 参数
temporal:要调整的目标对象,不能为null。
3 返回值
调整后的对象,不能为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.MonthDay adjustInto()方法
*/
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]
热门文章
优秀文章