// CPU使用率其实就是你运行的程序占用的CPU资源,表示你的机器在某个时间点的运行程序的情况。
public class CPUTest
{
public static void main(String[] args)
{
long startTime = 0;// 开始时间
int busyTime = 10;// 繁忙时间
int idleTime = 10;// 空闲时间
while (true)
{
startTime = System.currentTimeMillis();
// CPU繁忙
while (System.currentTimeMillis() - startTime <= busyTime)
;
// CPU空闲
try
{
Thread.sleep(idleTime);
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
}
}
编程之美_003让CPU占用率划出一条直线
原文作者:q启明星
原文地址: https://blog.csdn.net/adam_wzs/article/details/8481644
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/adam_wzs/article/details/8481644
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。