cpu占用率曲线-笔记

Posted 不爱熬夜的猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cpu占用率曲线-笔记相关的知识,希望对你有一定的参考价值。

我们知道要查看电脑的cpu占用率的话可以从任务管理器得知,进一步可以从->性能栏 看到CPU占用率的曲线的变化。今天看了编程之美的第一章第一节,看到对电脑cpu占用率的控制,控制CPU占用率曲线变化,达到特定的效果。

cpu占用率曲线的刷新频率为1秒。要使在某一时刻CPU占用率达到目的中的百分比,可通过分配1秒内程序运行和休眠的时间的所占比,来达到。如在某1秒内,程序都处于休眠状态,那么,CPU占用率将达到0(理想化)。反正,cpu占用率将达到100%。

第一种方法:基于计算程序所运行的电脑CPU主频,而得到的循环次数参数(根据电脑配置而定),该参数是10毫秒内,CPU运行循环40500000次。

public static void main(String[] args) throws InterruptedException {
        for (;;){
             for (int i=0;i<40500000;i++);
             Thread.sleep(10);
         }
    }

二:根据所占时间比重

public static final int BUSYTIME=10;
public static final int IDLETIME=BUSYTIME;
public
static void main(String[] args) throws InterruptedException { while(true){ long startTime=System.currentTimeMillis();//获取开始时间 while(System.currentTimeMillis()-startTime<=BUSYTIME){ }; Thread.sleep(IDLETIME); } }

三:画个正弦

public static final double PI=3.1415926535;
public static final int X_COUNT=200;//200百个抽样点,画个正弦函数
public static final int TIME=300;//每个点的时间片,单位毫秒
 //正弦函数Y=TIME/2 + TIME/2*Math.sin(i*PI/100)
 //思路:先计算每个时间片内,busy和idle分别所运行的时间,之后进行循环运行
public
static void main(String[] args) throws InterruptedException { int busy[]=new int[200]; for (int i = 0; i < X_COUNT; i++) { busy[i]=(int) (TIME/2 + TIME/2*Math.sin(i*PI/100)); System.out.println(busy[i]); } while(true){ for (int i = 0; i < busy.length; i++) { long startTime=System.currentTimeMillis();//获取开始时间 while(System.currentTimeMillis()-startTime<=busy[i]){ System.out.println(i); System.out.println(busy[i]); }; Thread.sleep(TIME-busy[i]); } System.out.println("一个周期"); } }

 

以上是关于cpu占用率曲线-笔记的主要内容,如果未能解决你的问题,请参考以下文章

编程之美读书笔记1.1——让CPU占用率曲线听你的指挥

cpu占用率让曲线指挥

电脑cpu使用率过高怎么解决

怎么获取jvm的cpu占用率

生成CPU使用率 sin 曲线 控制cpu使用率 编程之美

编程之美 之 让CPU占用率听你指挥