gpt4 book ai didi

java - 计算进程的运行时间

转载 作者:行者123 更新时间:2023-12-01 18:36:26 24 4
gpt4 key购买 nike

我想计算windows中任务管理器上运行的进程的运行时间。

如果特定进程在一定时间后运行,我可以结束该进程。

最佳答案

您需要使用时间函数。

//Your start time.
long startTime = System.nanoTime();
//YOUR CALL GOES HERE

//Your end time.
long stopTime = System.nanoTime();

//Take the difference and that is how long it takes to execute your function.
System.out.println(stopTime - startTime);

关于java - 计算进程的运行时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21811588/

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