std::wmemchr
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
const wchar_t* wmemchr( const wchar_t* ptr, wchar_t ch, std::size_t count ); |
||
wchar_t* wmemchr( wchar_t* ptr, wchar_t ch, std::size_t count ); |
||
。定位中第一次出现的宽字符
ch
指出,在最初的count
宽字符的对象ptr
. 原文:
Locates the first occurrence of wide character
ch
in the initial count
wide characters of the object pointed to by ptr
. [编辑] 。参数。
ptr | - | 。要检查的对象的指针。
原文: pointer to the object to be examined |
ch | - | 。宽字符搜索。
|
count | - | 。检查的字符数。
|
===。 返回值。===
。如果没有这样的字符的指针的位置的字符,或NULL发现.
原文:
Pointer to the location of the character, or NULL if no such character is found.
[编辑] 。为例。
本章尚未完成 原因:暂无示例 |
[编辑] 。另请参阅。
发现一个宽字符在宽字符串中首次出现的 原文: finds the first occurrence of a wide character in a wide string (函数) | |
(C++11) |
查找满足特定条件的第一个元素 (函数模板) |
C documentation for wmemchr
|