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.
最近我遇到了一些由这个标志的存在(或不存在)引起的链接问题。
/Zc:wchar_t-
我读过文档,但他们没有提到尾随的减号。但每一次对它的讨论似乎都包括它。这是什么意思?
/Zc:wchar_t-与 VC6 的兼容性相反/Zc:wchar_t:它导致wchar_t被视为与 相同的类型。unsigned short
/Zc:wchar_t
wchar_t
unsigned short
/Zc:wchar_t-导致您的代码与标准 C++ 不一致,因此除非必须,否则不要使用它。