java.util.Date toInstant()方法

java.util.Date.toInstant() 方法将此日期对象转换为Instant,并返回一个代表与日期对象在时间线上相同点的实例。

1 语法

public Instant toInstant()  

2 参数

3 返回值

它返回一个代表与日期对象在时间轴上相同点的时间点。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Date toInstant()方法的例子
 */
import java.util.Date;  
  
public class JavaDateToInstantExample1 {  
  
    public static void main(String[] args) {  
        Date d=new Date();  
        System.out.println("date in Instant : "+d.toInstant());  
        }  
} 

输出结果为:

date in Instant : 2018-09-25T04:48:26.617Z

热门文章

优秀文章