我正在尝试理解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