/Zc:wchar_t- 中的减号是什么意思?

发布于 2024-12-04 01:06:22 字数 226 浏览 0 评论 0原文

最近,我遇到了一些由于该标志的存在(或不存在)而导致的链接问题。

/Zc:wchar_t-

我已阅读 docs,但他们没有提到尾随的减号。但每次讨论似乎都包含它。这是什么意思?

Recently I had some linking issues caused by the presence (or absence) of this flag.

/Zc:wchar_t-

I've read the docs, but they don't mention the trailing minus. But every discussion of it seems to include it. What does it mean?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乱了心跳 2024-12-11 01:06:22

/Zc:wchar_t-/Zc:wchar_t 的作用相反:它导致 wchar_t 被视为与 相同的类型>unsigned Short,为了与 VC6 兼容。

/Zc:wchar_t- 会导致您的代码不符合标准 C++,因此除非必须,否则不要使用它。

/Zc:wchar_t- does the opposite of what /Zc:wchar_t does: it causes wchar_t to be treated as the same type as unsigned short, for compatibility with VC6.

/Zc:wchar_t- causes your code to be non-conformant with standard C++, so don't use it unless you must.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文