整数,printf:有没有办法在没有 locale.h 的情况下将整数作为宽字符写入控制台?
假设我有一个 Unicode 代码点 c(uint32
)。有没有办法在不使用 locale.h
或 wchar.h
的情况下将此整数打印到控制台(作为宽字符)?谢谢。
suppose I have a Unicode codepoint c (a uint32
). Is there a way to print this integer to console (as a wide character) without using locale.h
or wchar.h
? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试使用
,但您确实需要确保
c
是wint_t
(需要wchar.h
)而不是>uint32_t
,即使两者很可能是相同的类型......You can try to use
though you really need to make sure that
c
is awint_t
(which requireswchar.h
) rather than auint32_t
, even though the two are most likely the same type...http://www.cplusplus.com/reference/clibrary/cstdio/printf/
http://www.cplusplus.com/reference/clibrary/cstdio/printf/