프로그래밍의 아름다움003은 CPU 사용률을 획기적으로 증가시킵니다.

// 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();
            }
        }
    }
}

좋은 웹페이지 즐겨찾기