最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

android獲取手機(jī)cpu并判斷是單核還是多核

 更新時間:2013年02月21日 15:41:11   作者:  
手機(jī)cpu是單核還是多核如何判斷,本例將會介紹android中獲取的方法,感興趣的你可不要錯過了哈
復(fù)制代碼 代碼如下:

/**
* 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;
}
}

相關(guān)文章

最新評論

突泉县| 乐清市| 广灵县| 龙口市| 开平市| 浦县| 察隅县| 集安市| 科技| 宕昌县| 临潭县| 海南省| 崇仁县| 龙岩市| 清徐县| 双柏县| 祥云县| 连州市| 双辽市| 麟游县| 靖西县| 准格尔旗| 阳曲县| 松潘县| 浙江省| 高陵县| 苏州市| 盐亭县| 蛟河市| 东方市| 澎湖县| 施甸县| 天台县| 阿坝县| 陇西县| 永城市| 福海县| 巴林右旗| 封丘县| 蓝田县| 托克逊县|