std::memcpy
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstring> 中定义
|
||
void* memcpy( void* dest, const void* src, std::size_t count ); |
||
Copies count
bytes from the object pointed to by src
to the object pointed to by dest
.
If the objects overlap, the behavior is undefined. If the objects are not trivially copyable (e.g. scalars, arrays, C-compatible structs), the behavior is undefined.
[编辑] 。参数。
dest | - | 。复制到存储器位置的指针。
原文: pointer to the memory location to copy to |
src | - | 。指针指向的内存位置复制。
原文: pointer to the memory location to copy from |
count | - | 。要复制的字节数。
|
===。
返回值。===
dest
[编辑] 。为例。
#include <iostream> #include <cstring> int main() { char source[] = "once upon a midnight dreary..."; char dest[4]; std::memcpy(dest, source, sizeof dest); for (char c : dest) { std::cout << c << '\n'; } }
输出:
o n c e
[编辑] 。另请参阅。
一个缓冲器移动到另一个地方 (函数) | |
(C++11) |
将某一范围的元素复制到一个新的位置 (函数模板) |
按从后往前的顺序复制一个范围内的元素 (函数模板) | |
(C++11) |
检查类型是否可以通过简单拷贝内存完成拷贝 (类模板) |
C documentation for memcpy
|