手机cpu是单核还是多核如何判断

来源:爱站网时间:2022-01-12编辑:网友分享
android中获取手机cpu的过程中,要如何判断是单核还是多核的方法你知道怎么做吗?不懂没关系,让爱站技术频道小编来给大家介绍下。感兴趣的朋友可不要错过。
 

/**
* Gets the number of cores available in this device, across all processors.
* Requires: Ability to peruse the filesystem at "/sys/devices/system/cpu"
* @return The number of cores, or 1 if failed to get result
*/
private 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) {
//Default to return 1 core
return 1;
}
}

爱站技术频道小编给大家打来的手机cpu是单核还是多核如何判断内容,不知道各位朋友看懂了没有,了解更多详情咨询尽在js.aizhan.com。

上一篇:Android开发之自定义菜单的介绍

下一篇:Android桌面快捷方式的配置步骤

相关阅读

热门软件源码

最新软件源码下载