std::wmemset
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
wchar_t* wmemset( wchar_t* dest, wchar_t ch, std::size_t count ); |
||
。将宽字符复制到每个第一
ch
宽字符的对象指向count
dest
。如果对象是不平凡的拷贝(例如,标量,数组,或C-兼容的结构),其行为是不确定的。如果dest+size+1点以外的对象,该行为是未定义.原文:
Copies wide character
ch
into each of the first count
wide characters of the object pointed to by dest
. If the object is not trivially-copyable (e.g., scalar, array, or a C-compatible struct), the behavior is undefined. If dest+size+1 points outside the object, the behavior is undefined.[编辑] 。参数。
dest | - | 。指针指向的对象来填充。
|
ch | - | 。填充字节。
|
count | - | 。数字节填充。
|
===。
返回值。===
dest
[编辑] 。为例。
#include <iostream> #include <cwchar> int main() { int a[20]; std::memset(a, 0, sizeof(a)); std::cout << "a[0] = " << a[0] << '\n'; }
输出:
a[0] = 0
[编辑] 。另请参阅。
复制宽字符两个非重叠的阵列之间的一定量的 原文: copies a certain amount of wide characters between two non-overlapping arrays (函数) | |
将一个值赋给一定数目的元素 (函数模板) | |
(C++11) |
检查类型是否可以通过简单拷贝内存完成拷贝 (类模板) |
C documentation for wmemset
|