获取cpu核数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取cpu核数相关的知识,希望对你有一定的参考价值。
参考技术A 获取CPU总数public static int getNumCores()
//Private Class to display only CPU devices in the directory listing
class CpuFilter implements FileFilter
@Override
public boolean accept(File pathname)
//Check if filename is "cpu", followed by a single digit number
if(Pattern.matches("cpu[0-9]", pathname.getName()))
return true;
return false;
try
//Get directory containing CPU info
File dir = new File("/sys/devices/system/cpu/");
//Filter to only list the devices we care about
File[] files = dir.listFiles(new CpuFilter());
//Return the number of cores (virtual CPU devices)
return files.length;
catch(Exception e)
//Print exception
// Log.d(TAG, "CPU Count: Failed.");
e.printStackTrace();
//Default to return 1 core
return 1;
获取可用的CPU数
一些设备根据系统负载已经关闭一个或多个内核的cpu,对于这些设备,availableProcessors()返回的是可用的内核数,这个数字一般小于内核总数:
public static int getNumAvailableCores()
return Runtime.getRuntime().availableProcessors();
以上是关于获取cpu核数的主要内容,如果未能解决你的问题,请参考以下文章
如何获取 Android 设备的CPU核数,时钟频率以及内存大小