如何使用 C++ 中字符的 ascii 代码创建 std::wstring?

发布于 2024-09-13 17:36:49 字数 134 浏览 4 评论 0原文

我需要创建一个 wstring,其字符具有以下 ascii 值:30、29、28、27、26、25。

在 VB6 中,我会执行 asc(30) + asc(29)+ 等...

什么是C++ 等价物?

谢谢!

I need to create a wstring with the chars that have the following ascii values: 30, 29, 28, 27, 26, 25.

In VB6, I would do asc(30) + asc(29)+ etc...

What's the C++ equivalent?

Thanks!

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

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

发布评论

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

评论(2

半葬歌 2024-09-20 17:36:50

这是一个关于字符集转换的技巧问题吗? :) 因为该标准不保证 ASCII 字符由 wchar_t 中的 ASCII 整数值表示(即使对于大多数编译器/系统来说,这是事实)。如果重要,请使用适当的语言环境显式地扩展字符:

std::wstring s;
std::locale loc("C"); // pick a locale with ASCII encoding

s.push_back(std::use_facet<std::ctype<wchar_t> >(loc).widen(30));
s.push_back(std::use_facet<std::ctype<wchar_t> >(loc).widen(29));
s.push_back(std::use_facet<std::ctype<wchar_t> >(loc).widen(28));

不要以尾随 0 结尾,它是在通过调用 .c_str() 将 wstring 转换为 wchar_t * 时添加的

Is this a trick question about character set conversion? :) Because the standard does not guarantee that an ASCII character is represented by its ASCII integer value in a wchar_t (even though for most compilers/systems, this will be true). If it matters, explicitly widen your char using an appropriate locale:

std::wstring s;
std::locale loc("C"); // pick a locale with ASCII encoding

s.push_back(std::use_facet<std::ctype<wchar_t> >(loc).widen(30));
s.push_back(std::use_facet<std::ctype<wchar_t> >(loc).widen(29));
s.push_back(std::use_facet<std::ctype<wchar_t> >(loc).widen(28));

Don't terminate with a trailing 0, it is added when you convert the wstring to a wchar_t * by invoking .c_str()

醉梦枕江山 2024-09-20 17:36:50

std::wstring 只不过是伪装成字符串的 std::vector 。

因此,您应该能够使用 Push_back 方法,如下所示:

std::wstring s;

s.push_back(65);
s.push_back(0);

std::wcout << s << std::endl;

不要忘记 0 终止符!

An std::wstring is nothing more than an std::vector disguised as a string.

Therefore you should be able to use the push_back method, like this:

std::wstring s;

s.push_back(65);
s.push_back(0);

std::wcout << s << std::endl;

Don't forget the 0-terminator !

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