wcslen
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <wchar.h> 中定义
|
||
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
.[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
C++ documentation for wcslen
|