获取 c++ 中 `wchar_t*` 的长度
请问,在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想知道
wchar_t
字符串 (wchar_t *
) 的大小,您需要使用wcslen(3)
:If you want to know the size of a
wchar_t
string (wchar_t *
), you want to usewcslen(3)
:假设您想要获取以 null 结尾的 C 样式字符串的长度,您有两个选择:
#include
和使用std::wcslen (dimObjPrefix);
,#include
并使用std::char_traits::length (dimObjPrefix);
。Assuming that you want to get the length of null terminated C style string, you have two options:
#include <cwchar>
and usestd::wcslen (dimObjPrefix);
,#include <string>
and usestd::char_traits<wchar_t>::length (dimObjPrefix);
.