java 中stopwatch,Stopwatch

java 中stopwatch,Stopwatch/***Anobjectthataccuratelymeasureselapsedtime:themeasureddurationbetweentwo*successivereadingsof”now”inthesameprocess.*一个精确计算消耗时间的对象:计算在同一进程中两次连续读取当前时间之间持续的时间*Incontrast,wallti…

大家好,又见面了,我是你们的朋友全栈君。

/**

* An object that accurately measures elapsed time: the measured duration between two

* successive readings of “now” in the same process.

*一个精确计算消耗时间的对象:计算在同一进程中两次连续读取当前时间之间持续的时间

*

In contrast, wall time is a reading of “now” as given by a method like

* {

@link System#currentTimeMillis()}, best represented as an {

@link Instant}. Such values

* can be subtracted to obtain a {

@code Duration} (such as by {

@code Duration.between}), but

* doing so does not give a reliable measurement of elapsed time, because wall time readings

* are inherently approximate, routinely affected by periodic clock corrections. Because this class

* (by default) uses {

@link System#nanoTime}, it is unaffected by these changes.

*作为对照,实际时间是读取当前时间,就像System.currentTimeMillis()方法,一瞬间的最好代表。这种值相减可以得到一段时间,但是这样得不到准确的消耗的时间,因为实际时间读取是本质上近似的,

经常受到周期性时钟校正的影响。因为这个类使用System.nanoTime方法,它不受这些变化的影响

*

Use this class instead of direct calls to {@link System#nanoTime} for two reasons:

*用这个类代替直接调用System.nanoTime有两个原因

*

*

The raw {@code long} values returned by {@code nanoTime} are meaningless and unsafe to use

* in any other way than how {@code Stopwatch} uses them.

任何地方使用nanoTime返回的这个原生的long类型的值相对于Stopwatch使用它相比,毫无意义而且不安全

*

An alternative source of nanosecond ticks can be substituted, for example for testing or

* performance reasons, without affecting most of your code.

一个可供选择的资源是时间片段可以被替换,例如为了测试或性能原因,不影响你的大部分代码

*

*

*

Basic usage:

*

*

{@code

* Stopwatch stopwatch = Stopwatch.createStarted();

* doSomething();

* stopwatch.stop(); // optional

*

* Duration duration = stopwatch.elapsed();

*

* log.info(“time: ” + stopwatch); // formatted string like “12.3 ms”

* }

*

*

The state-changing methods are not idempotent; it is an error to start or stop a stopwatch

* that is already in the desired state.

*这个状态更改的方法不是幂等的,开始或停止一个已经处于期望状态的stopwatch对象是一个错误。

*

When testing code that uses this class, use {@link #createUnstarted(Ticker)} or {@link

* #createStarted(Ticker)} to supply a fake or mock ticker. This allows you to simulate any valid

* behavior of the stopwatch.

*当测试代码使用这个类,使用createUnstarted(Ticker)或createStarted(Ticker)提供一个假的或模拟的ticker,这里允许你模拟任何stopwatch有效的行为

*

Note: This class is not thread-safe.

*这个类是非线程安全的。

*

Warning for Android users: a stopwatch with default behavior may not continue to keep

* time while the device is asleep. Instead, create one like this:

*安卓用户的警告:设备休眠的时候stopwatch默认可能不会继续计算。代替的创建一个类似这种的代码:

*

{@code

* Stopwatch.createStarted(

* new Ticker() {

* public long read() {

* return android.os.SystemClock.elapsedRealtimeNanos();

* }

* });

* }

*

* @author Kevin Bourrillion

* @since 10.0

*/

总结:stopwatch主要功能就是两次star和stop调用之间的时间,还可以多次累加、可以重置。非线程安全的。

增加ticker的作用是可以自己替换和实现时间的读取。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/152409.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • GitLab如何进行备份恢复与迁移?

    GitLab如何进行备份恢复与迁移?

  • pychrome激活码2021_通用破解码

    pychrome激活码2021_通用破解码,https://javaforall.cn/100143.html。详细ieda激活码不妨到全栈程序员必看教程网一起来了解一下吧!

  • mybatis-log-plus 激活码【2022最新】2022.03.03

    (mybatis-log-plus 激活码)JetBrains旗下有多款编译器工具(如:IntelliJ、WebStorm、PyCharm等)在各编程领域几乎都占据了垄断地位。建立在开源IntelliJ平台之上,过去15年以来,JetBrains一直在不断发展和完善这个平台。这个平台可以针对您的开发工作流进行微调并且能够提供…

  • jQuery来源学习笔记:扩展的实用功能

    jQuery来源学习笔记:扩展的实用功能

  • 电商网站后台九大功能模块详解[通俗易懂]

    电商网站后台九大功能模块详解[通俗易懂]电商网站后台九大功能模块详解 随着电子商务的发展,网上购物正在趋于一种时尚,电子商务网站也逐渐成为企业顺应潮流的标配。大多数人知道可能在电子商务网站前端有查询,注册登录,购物车等等功能。可是您知道建设电子商务网站后台功能模块都有哪些么?今天我们就聊聊电商网站后台功能模块的那些事。电子商务网站整个系统的后端管理,按功能划分为九大模块,包括商品组织管理、订单处理、内容发布管理等模块。一、后台…

  • net share列出了Windows的默认共享(包括C盘)[通俗易懂]

    开启共享方法:命令行方式:netshare博客=F:\娱乐\种子我设置了一个名为“博客”的共享,路径为:“F:\娱乐\种子”。 GUI方式:找到“F:\娱乐”的“种子”文件夹,点击右键,找到属性的共享标签,根据提示进行设置即可。相对简单不再骜述。如果无法共享你的文件夹,或文件夹属性里找不到共享标签。请参看下面两条:无法共享:确保你的Server、Workstation两个服务处于开启状态。在运行里输入Services.msc打开服务管理器,找到上述服务,设置为自动,并启动相应服务。 找不

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号