整数,printf:有没有办法在没有 locale.h 的情况下将整数作为宽字符写入控制台?

发布于 2024-11-09 04:26:33 字数 129 浏览 0 评论 0原文

假设我有一个 Unicode 代码点 c(uint32)。有没有办法在不使用 locale.hwchar.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 技术交流群。

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

发布评论

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

评论(2

赠意 2024-11-16 04:26:33

您可以尝试使用

printf("%lc", c);

,但您确实需要确保 cwint_t (需要 wchar.h)而不是 >uint32_t,即使两者很可能是相同的类型......

You can try to use

printf("%lc", c);

though you really need to make sure that c is a wint_t (which requires wchar.h) rather than a uint32_t, even though the two are most likely the same type...

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