将 wchar_t 定义为 2byte
在我的应用程序中,我总是需要 wchar_t 为 2 个字节。我知道 -fshort-wchar 可以做到这一点。但我不能在 zSeries 上使用它。还有其他方法可以将 wchar_t 定义为 2 字节吗?
In my application I always need wchar_t to be 2 byte. I know -fshort-wchar can do this. But I can't use this on zSeries. is there any other way to define wchar_t to 2 byte?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。
wchar_t
是实现定义的。你无法控制它。不要依赖实现定义的类型。改为依赖标准 (C99
) 类型。_T( ) Macro Changes for UNICODE character data 问题有什么问题?
No.
wchar_t
is implementation defined. You have no control over it.Don't rely on implementation defined types. Rely on Standard (C99
<inttypes.h>
) types instead.What's wrong with the question _T( ) macro changes for UNICODE character data?