如何在正在运行的 C++/Qt 应用程序中检测底层 Windows 是 32 位还是 64 位版本?
可能的重复:
检测当前 Windows 版本是 32 位还是 64 位一点
正确的检查方法Windows 是否是 64 位,在运行时? (C++)
我发现了一些关于该主题的问题,但不完全是我需要的。
我正在开发一个完全跨平台的 C++/Qt 应用程序,除了应用程序必须运行的一些预编译的 .exe 之外。 (只有 Windows 与该问题相关)。我有这些可执行文件的 32 位和 64 位 Windows 版本。 我知道一种选择是打包整个应用程序的两个版本,但代码的更改非常小,因此我想考虑其他替代方案。
那么,有没有一种方法可以使用 C++/Qt 功能在运行时检测底层 Windows 是 32 位版本还是 64 位版本?
谢谢!
Possible Duplicate:
Detect whether current Windows version is 32 bit or 64 bit
Correct way to check if Windows is 64 bit or not, on runtime? (C++)
I found some questions on the topic, but not exactly what I need.
I'm developing a C++/Qt application that is completely cross-platform except for some precompiled .exe's the app has to run. (Only Windows is relevant to the question). I have 32 and 64 bits Windows versions of these executables.
I know that one option would be to package two versions of the whole app, but the change in the code would be so minimal that I'd like to think of other alternatives.
So, is there a way to detect at runtime, using C++/Qt features, whether the underlying Windows is a 32 or a 64 bits version?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,但您可以调用 WINAPI 函数来告诉您这一点。
调用 GetNativeSystemInfo()。如果您运行的是 x64,
SYSTEM_INFO::wProcessorArchitecture
将为PROCESSOR_ARCHITECTURE_AMD64
。如果是 32 x86 位,则为PROCESSOR_ARCHITECTURE_INTEL
No, but you can call WINAPI functions to tell you this.
Call GetNativeSystemInfo(). If you're running x64,
SYSTEM_INFO::wProcessorArchitecture
will bePROCESSOR_ARCHITECTURE_AMD64
. If 32 x86 bit it will bePROCESSOR_ARCHITECTURE_INTEL