在实际开发过程中,我们经常遇到cup突然飙升,这个时候我们要怎么分析,是项目中的那一行代码导致的呢?
假如有下面一段程序
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
/**
* @Author: wu.yj
* @Description:
* @Date: 2020/3/24 9:44
*/
public class TestCpu {
public static void main(String[] args) {
List<Integer> list = new ArrayList<>();
int count = 0;
while (true) {
double random = Math.random();
list.add((int) random * 1000000);
System.out.println(++ count);
}
}
}
这段程序我们在linux中运行,会不断的打印一串串的数字,这个时候cpu的使用一直飙升,下面我们讲一下如何分析:
1、先使用top命令;
首先看下用红色圈圈标记的分别是啥含义:
linux