我可以在 64 位 Windows 7 上安装 32 位软件吗?

S.A*_*hid 3 windows windows-7 64-bit visual-studio

可能的重复:
在 64 位机器上安装和运行 32 位

我可以在我的 64 位操作系统上安装像 Visual Studio 2010 这样的程序吗?

如果我在 64 位操作系统上用 Visual Studio 2010 编译我的程序,我可以运行它吗

在 32 位操作系统上?

Cod*_*ray 8

你试过吗?它会工作得很好。

所有 64 位版本的 Windows 都有一个 32 位兼容层,称为Windows 64 子系统上的 Windows(或简称 WoW64),专为运行 32 位应用程序而设计。

编译自己的应用程序时,需要确保将其编译为“Win32”应用程序。这会将其编译为 32 位应用程序,确保它可以在 32 位和 64 位版本的 Windows 上运行。如果您将其编译为 64 位应用程序,它将只能在 64 位版本的 Windows 上运行,并且您将需要分发两个版本的应用程序。