博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java clock计时_Java Clock类| 实例的Instant()方法
阅读量:2532 次
发布时间:2019-05-11

本文共 1946 字,大约阅读时间需要 6 分钟。

java clock计时

Clock Class Instant()方法 (Clock Class instant() method)

  • instant() method is available in java.time package.

    Instant()方法在java.time包中可用。

  • instant() method is used to get the current instant that is used with this Clock.

    Instant()方法用于获取与此Clock一起使用的当前时刻。

  • instant() method is a non-static method, it is accessible with the class object and if we try to access the method with the class name then we will get an error.

    Instant()方法是一种非静态方法,可通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • instant() method may throw an exception at the time of returning instant.

    Instant()方法在返回Instant时可能会引发异常。

    DateTimeException: This exception may throw when no instant couldn’t be generated (i.e. invalid instant is used with this Clock).

    DateTimeException :当无法生成任何瞬间时(例如,此Clock使用无效的瞬间),可能会引发此异常。

Syntax:

句法:

public Instant instant();

Parameter(s):

参数:

  • None

    没有

Return value:

返回值:

The return type of this method is Instant, it returns the present instant that is used with this Clock.

此方法的返回类型为Instant ,它返回与此Clock一起使用的当前时刻。

Example:

例:

// Java program to demonstrate the example // of instant() method of Clockimport java.time.*;public class InstantOfClock {
public static void main(String args[]) {
// Instantiates two ZoneId for Accra and Asmara ZoneId zone_1 = ZoneId.of("Africa/Accra"); ZoneId zone_2 = ZoneId.of("Africa/Asmara"); // Initialize two Clock objects Clock cl1 = Clock.system(zone_1); Clock cl2 = Clock.system(zone_2); // returns the current instant value of this Clock cl1 Instant cl_ins = cl1.instant(); // Display cl1 instant System.out.println("cl1.instant(): " + cl_ins); // returns the current instant value of this Clock cl2 cl_ins = cl2.instant(); // Display cl2 instant System.out.println("cl2.instant(): " + cl_ins); }}

Output

输出量

cl1.instant(): 2020-05-13T18:38:03.026909Zcl2.instant(): 2020-05-13T18:38:03.077464Z

翻译自:

java clock计时

转载地址:http://catzd.baihongyu.com/

你可能感兴趣的文章
UIScrollerView ,UIPageControl混搭使用,添加定时器,无限循环滚动
查看>>
图论知识,博客
查看>>
微信企业号开发之-如何获取secret 序列号
查看>>
2015年最新Android基础入门教程目录(完结版)
查看>>
[原创]一篇无关技术的小日记(仅作暂存)
查看>>
20145303刘俊谦 Exp7 网络欺诈技术防范
查看>>
原生和jQuery的ajax用法
查看>>
iOS开发播放文本
查看>>
20145202马超《java》实验5
查看>>
JQuery 事件
查看>>
main(argc,argv[])
查看>>
源码:Java集合源码之:哈希表(二)
查看>>
【HDU 3709】 Balanced Number (数位DP)
查看>>
JsonPath的使用
查看>>
企业常用的站内收索、QQ群、在线客服
查看>>
Centos下安装nginx步骤解析
查看>>
EntityFramework Code First 添加唯一键
查看>>
在线教育工具—白板系统的迭代1——bug监控排查
查看>>
招行ODC项目表彰
查看>>
js补充知识点-label应用
查看>>