Qt - 获取系统信息
我正在寻找一种(便携式)方法来获取系统信息,即CPU时钟和制造商、可用内存等。
有没有办法用Qt来做到这一点,或者我是否必须编写操作系统特定的代码?
I'm looking for a (portable) way to get system information, i.e cpu clock and manufacturer, available memory, etc.
Is there a way to do this with Qt or do I have to write OS specific code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 Qt 中没有内置任何东西来获取这些细节。在 Linux 上,所有这些都可以通过 /proc/cpuinfo 获得。如果您的目标是其他平台,您可能只想直接使用 cpuid 指令(假设x86/x86-64)。
I don't think that there is anything built into Qt to get these kind of details. On linux, all of this is available through /proc/cpuinfo. If you are targeting other platforms, you may want to just go directly to using the cpuid instruction (assuming x86/x86-64).