Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我int res = system("uname -p");在我的 C++ 代码中使用。
int res = system("uname -p");
它将通过使用在标准输出中给出结果
fprintf(stdout,"execution returned %d.\n",res);
我想将此结果字符串存储在变量中,但无法存储。
我用谷歌搜索但找不到合适的解决方案,谁能告诉我正确的方法。
首先,您不需要以uname编程方式运行命令来获取您的处理器。您可以简单地运行uname(2) 系统调用(uname命令调用)。你也可以/proc/cpuinfo从你的程序中读取和解析。
uname
/proc/cpuinfo
如果您想读取某些命令的输出,请使用popen(3)库函数。
另请参阅我对相关问题的回答。