memmove
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <string.h> 中定义
|
||
void* memmove( void* dest, const void* src, size_t count ); |
||
副本
count
字符的对象所指向的src
指出,dest
的对象。对象可以重叠:复制发生,如果字符被复制到一个临时字符数组,然后被复制的字符从阵列到dest
的原文:
Copies
count
characters from the object pointed to by src
to the object pointed to by dest
. The objects may overlap: copying takes place as if the characters were copied to a temporary character array and then the characters were copied from the array to dest
.目录 |
[编辑] 参数
dest | - | 复制到存储器位置的指针
原文: pointer to the memory location to copy to |
src | - | 指针指向的内存位置复制
原文: pointer to the memory location to copy from |
count | - | 要复制的字节数
|
[编辑] 返回值
dest
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
一个缓冲区拷贝到另一个地方 (函数) | |
C++ documentation for memmove
|