gpt4 book ai didi

java - java程序中两个线程之间的延迟

转载 作者:行者123 更新时间:2023-12-01 15:48:33 24 4
gpt4 key购买 nike

在一个java程序中我有两个不同的线程。如何计算整个程序中两个不同线程执行之间的延迟?

谢谢

最佳答案

使用 System 类的 nanoTime()

Returns the current value of the most precise available system timer, in nanoseconds.

 long startTime = System.nanoTime();
// ... the code being measured ...
long estimatedTime = System.nanoTime() - startTime;

您还可以使用currentTimeMillis()

Returns the current time in milliseconds.

关于java - java程序中两个线程之间的延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6606384/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com