当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.time.Instant.from()用法及代码示例



描述

这个java.time.Instant.from(TemporalAccessor temporal)方法从时间对象中获取 Instant 的实例。

声明

以下是声明java.time.Instant.from(TemporalAccessor temporal)方法。

public static Instant from(TemporalAccessor temporal)

参数

temporal- 要转换的时间对象,不为空。

返回值

瞬间,不为空。

异常

DateTimeException- 如果无法转换为 Instant。

示例

以下示例显示了 java.time.Instant.from(TemporalAccessor temporal) 方法的用法。

package com.tutorialspoint;

import java.time.Instant;
import java.time.ZonedDateTime;

public class InstantDemo {
   public static void main(String[] args) {

      ZonedDateTime zonedDateTime = ZonedDateTime.now();

      Instant instant = Instant.from(zonedDateTime);

      System.out.println(instant);
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

2017-03-10T09:29:03.044Z

相关用法


注:本文由纯净天空筛选整理自 java.time.Instant.from() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。