是否有连接两个 char16_t 的函数

发布于 2025-01-10 21:17:53 字数 260 浏览 0 评论 0原文

有用于连接两个 wchar_t* 的函数 wcsncat_s()

errno_t wcsncat_s( wchar_t *restrict dest, rsize_t destsz, const wchar_t *restrict src, rsize_t count );

是否有用于连接两个 char16_t 的等效函数?

There is the function wcsncat_s() for concatenating two wchar_t*:

errno_t wcsncat_s( wchar_t *restrict dest, rsize_t destsz, const wchar_t *restrict src, rsize_t count );

Is there an equivalent function for concatenating two char16_t?

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

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

发布评论

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

评论(2

烟─花易冷 2025-01-17 21:17:54

并不真地。

不过,在 Windows 上,wchar_t 在功能上与 char16_t 相同,因此您只需将 char16_t* 转换为 wchar_t*.

否则,您可以通过自己编写一个函数来简单地完成它。

Not really.

On Windows, though, wchar_t is functionally identical to char16_t, so you could just cast your char16_t* to a wchar_t*.

Otherwise you can do it simply enough by writing yourself a function for it.

浮萍、无处依 2025-01-17 21:17:54

如果您想要便携的东西,您可以使用 std::u16string

std::u16string str1(u16"The quick brown fox ");
std::u16string str2(u16"Jumped over the lazy dog");

std::u16string str3 = str1+str2;  // concatenate

const char16_t* psz = str3.c_str();

只要 str3 不超出范围,psz 的有效性就会持续。

但更便携、更灵活的解决方案是在任何地方都使用 wchar_t(在 Mac 上是 32 位)。除非您明确使用 16 位字符字符串(可能用于特定的 UTf16 处理例程),否则将代码保留在宽字符 (wchar_t) 空间中会更容易。在 Mac 和 Windows 上与本机 API 和库配合得更好。

You could use std::u16string if you want something portable.

std::u16string str1(u16"The quick brown fox ");
std::u16string str2(u16"Jumped over the lazy dog");

std::u16string str3 = str1+str2;  // concatenate

const char16_t* psz = str3.c_str();

The validity of psz lasts as long as str3 doesn't go out of out scope.

But the more portable and flexible solution is to just use wchar_t everywhere (which is 32-bit on Mac). Unless you are explicitly using 16-bit char strings (perhaps for a specific UTf16 processing routine), it's easier to just keep your code in the wide char (wchar_t) space. Plays nicer with native APIs and libraries on Mac and Windows.

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