std::wcslen
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
std::size_t wcslen( const wchar_t *str ); |
||
。返回一个宽字符串的长度,即非空之前终止空宽字符的宽字符数.
原文:
Returns the length of a wide string, that is the number of non-null wide characters that precede the terminating null wide character.
[编辑] 。参数。
str | - | 。指针null结尾的宽字符串进行检查。
原文: pointer to the null-terminated wide string to be examined |
===。 返回值。===
。 null结尾的宽字符串的长度
str
.原文:
The length of the null-terminated wide string
str
.[编辑] 。为例。
#include <iostream> #include <cwchar> int main() { const wchar_t* str = L"Hello, world!"; std::wcout << "The length of L\"" << str << "\" is " << std::wcslen(str) << '\n'; }
输出:
The length of L"Hello, world!" is 13
[编辑] 。另请参阅。
C documentation for wcslen
|