std::memset
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstring> 中定义
|
||
void* memset( void* dest, int ch, std::size_t count ); |
||
。的值转换
ch
unsigned char,并将其复制到每个count
字符指向的对象的dest
。如果对象是不平凡的拷贝(例如,标量,数组,或C-兼容的结构),其行为是不确定的。 count
是大于dest
所指向的对象的大小,该行为是未定义.原文:
Converts the value
ch
to unsigned char and copies it into each of the first count
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 count
is greater than the size of the object pointed to by dest
, the behavior is undefined.[编辑] 。参数。
dest | - | 。指针指向的对象来填充。
|
ch | - | 。填充字节。
|
count | - | 。数字节填充。
|
===。
返回值。===
dest
[编辑] 。为例。
#include <iostream> #include <cstring> int main() { int a[20]; std::memset(a, 0, sizeof(a)); std::cout << "a[0] = " << a[0] << '\n'; }
输出:
a[0] = 0
[编辑] 。另请参阅。
一个缓冲区拷贝到另一个地方 (函数) | |
将一个值赋给一定数目的元素 (函数模板) | |
(C++11) |
检查类型是否可以通过简单拷贝内存完成拷贝 (类模板) |
C documentation for memset
|