java.time.Instant
1 java.time.Instant介绍
Java Instant类用于表示时间轴上的特定时刻。它继承了Object类并实现Comparable接口。
2 java.time.Instant声明
我们来看一下java.time.Instant类的声明。
public final class Instant extends Object
implements Temporal, TemporalAdjuster, Comparable<Instant>, Serializable
3 java.time.Instant方法
4 java.time.Instant案例1
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
import java.time.Instant;
public class InstantExample1 {
public static void main(String[] args) {
Instant inst = Instant.parse("2017-02-03T10:37:30.00Z");
System.out.println(inst);
}
}
输出结果为:
2017-02-03T10:37:30Z
5 java.time.Instant案例2
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
import java.time.Instant;
public class InstantExample2 {
public static void main(String[] args) {
Instant instant = Instant.now();
System.out.println(instant);
}
}
输出结果为:
2017-02-03T06:11:01.194Z
热门文章
优秀文章