获取 c++ 中 `wchar_t*` 的长度

发布于 2024-09-01 21:43:46 字数 173 浏览 2 评论 0原文

请问,在c++中如何找出wchar_t*类型变量的长度?

下面的代码示例:

wchar_t* dimObjPrefix = L"retro_";

我想知道 dimObjPrefix 包含多少个字符

Please, how can I find out the length of a variable of type wchar_t* in c++?

code example below:

wchar_t* dimObjPrefix = L"retro_";

I would like to find out how many characters dimObjPrefix contains

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

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

发布评论

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

评论(2

等风来 2024-09-08 21:43:46

如果您想知道 wchar_t 字符串 (wchar_t *) 的大小,您需要使用 wcslen(3)

size_t wcslen (const wchar_t *ws);

If you want to know the size of a wchar_t string (wchar_t *), you want to use wcslen(3):

size_t wcslen (const wchar_t *ws);
听闻余生 2024-09-08 21:43:46

假设您想要获取以 null 结尾的 C 样式字符串的长度,您有两个选择:

  1. #include 和使用 std::wcslen (dimObjPrefix);
  2. #include 并使用 std::char_traits::length (dimObjPrefix);

Assuming that you want to get the length of null terminated C style string, you have two options:

  1. #include <cwchar> and use std::wcslen (dimObjPrefix);,
  2. or #include <string> and use std::char_traits<wchar_t>::length (dimObjPrefix);.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文