我想明白之间的差别memcpy()
,并memmove()
和我有阅读的文本memcpy()
,而没有照顾重叠源和目的地memmove()
一样。
但是,当我在重叠的存储块上执行这两个功能时,它们都给出相同的结果。例如,在memmove()
帮助页面上采用以下MSDN示例:-
有没有更好的例子来了解它的缺点memcpy
以及如何memmove
解决?
// crt_memcpy.c
// Illustrate overlapping copy: memmove always handles it correctly; memcpy may handle
// it correctly.
#include <memory.h>
#include <string.h>
#include <stdio.h>
char str1[7] = "aabbcc";
int main( void )
{
printf( "The string: %s\n", str1 );
memcpy( str1 + 2, str1, 4 );
printf( "New string: %s\n", str1 );
strcpy_s( str1, sizeof(str1), "aabbcc" ); // reset string
printf( "The string: %s\n", str1 );
memmove( str1 + 2, str1, 4 );
printf( "New string: %s\n", str1 );
}
输出:
The string: aabbcc
New string: aaaabb
The string: aabbcc
New string: aaaabb
memcpy
可以assert
确保区域不重叠而不是有意掩盖代码中的错误,这是安全的。
The string: aabbcc New string: aaaaaa The string: aabbcc New string: aaaabb