java.time.Instant adjustInto()方法
java.time.Instant.adjustInto(Temporal temporal)方法调整指定的时态对象以获得此瞬间。
1 语法
public Temporal adjustInto(Temporal temporal)
2 参数
temporal:要调整的目标对象,而不是null。
3 返回值
调整后的对象,不为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Instant adjustInto()方法
*/
import java.time.Instant;
import java.time.ZonedDateTime;
public class InstantDemo {
public static void main(String[] args) {
ZonedDateTime date = ZonedDateTime.now();
System.out.println(date);
Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
date = (ZonedDateTime)instant.adjustInto(date);
System.out.println(date);
}
}
输出结果为:
2017-03-10T11:10:35.454+05:30[Asia/Calcutta]
2017-02-03T16:07:30+05:30[Asia/Calcutta]
热门文章
优秀文章