gpt4 book ai didi

c++ - Visual C++ 中的 _32_ 和 _64_ 等价物

转载 作者:太空宇宙 更新时间:2023-11-04 05:43:38 25 4
gpt4 key购买 nike

我想在 Visual C 中定义 32(32 位编译)和 64(64 位编译)。是否有任何预定义的宏?我徒劳地搜索了 MSDN。

您认为 3264 的这种定义可行吗?

#define _32_ if !(defined __LP64__ || defined __LLP64__) || defined _WIN32 && !defined _WIN64
// we are compiling for a 32-bit system
the else statement will be _64_ definition
// we are compiling for a 64-bit system

谢谢!

最佳答案

来自 the docs :

_M_IX86: Defined for x86 processors. ... This is not defined for x64 processors.

_M_X64: Defined for x64 processors.

_M_IA64: Defined for Itanium Processor Family 64-bit processors.

_WIN32: Defined for applications for Win32 and Win64. Always defined.

_WIN64: Defined for applications for Win64.

任你选。

关于c++ - Visual C++ 中的 _32_ 和 _64_ 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11752111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com