对于Linux中的CPU:
// ...
string str;
ifstream file("/proc/cpuinfo");
while (file) {
std::getline(file, str);
if (str.find("model name") != std::string::npos) {
// ...
}
else
if (str.find("vendor_id") != std::string::npos) {
// ...
}
// ...
}
您可以获得有关处理器的信息。以及如何在Linux中使用C ++获取有关主板的信息?
谢谢朋友!