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.
例如
typedef float Real;
并想检查 Real 是否已定义?对于宏,很容易
#define Real float #ifndef Real #define Real float #endif
typedef呢?
Anytypedef可以重复(具有相同的定义),因此您无需检查它是否已经存在。
typedef
警告:旧版本的 g++ 并没有完全遵循标准的规则。然后,对于手头的特定问题,解决方案是生成可能唯一的标识符。