java.util.Calendar toInstant()方法

java.util.Calendar.toInstant() 方法用于将当前对象转换为一个日期,该日期表示与当前日历对象相同的时间。

1 语法

public final Instant toInstant()  

2 参数

3 返回值

返回表示相同的时间。

4 示例1 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Calendar toInstant()方法的例子
 */
import java.util.Calendar;  

public class JavaCalendartoInstantExample1 {  
    public static void main(String[] args) {  
  // create new calendar at specific date.  
     Calendar cal = (Calendar)  Calendar.getInstance();  
      // print date for default value  
      System.out.println("Past calendar : " + cal.getTime());  
      System.out.println("calendar after using toInstant() : " +  cal.toInstant());  
   }  
}  

输出结果为:

Past calendar : Sat Aug 18 12:07:13 PDT 2018
calendar after using toInstant() : 2018-08-18T19:07:13.206Z

 

热门文章

优秀文章