- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - 瞬时
- java.time - 日期
- java.time - 日期时间
- java.time - 时间
- java.time - 月日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 时间段
- java.time - 年份
- java.time - 年月
- java.time - 时区日期时间
- java.time - 时区标识符
- java.time - 时区偏移量
- java.time 包枚举
- java.time - 月份
- java.time 有用资源
- java.time - 讨论
java.time.Instant.now() 方法示例
描述
java.time.Instant.now(Clock clock) 方法从指定时钟获取当前时刻。
声明
以下是 java.time.Instant.now(Clock clock) 方法的声明。
public static Instant now(Clock clock)
java.time.Instant java.time.Instant.now(Clock clock)
参数
clock - 要使用的时钟(非 null)。
返回值
non null - 使用指定时钟获取的当前时刻。
示例
package com.tutorialspoint; import java.time.Clock; import java.time.Instant; public class InstantDemo { public static void main(String[] args) { Instant instant = Instant.now(Clock.systemUTC()); System.out.println(instant); } }
让我们编译并运行以上程序,将生成以下结果 -
2017-03-15T09:18:34.062Z
广告