C++ macro quot;if class is definedquot;(C++ 宏“如果定义了类)
问题描述
C++ 中是否有这样的宏(交叉编译器或特定于编译器):
Is there such macro in C++ (cross-compiler or compiler-specific):
#if isclass(NameSpace::MyClass)
会有用的.
推荐答案
如果你不关心可移植性,__if_exists 语句满足您的需求.
If you do not care about portability, the __if_exists statement in VC++ meets your needs.
这篇关于C++ 宏“如果定义了类"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!