一、memcpy
1.函数介绍
strcpy只能拷贝字符串,而memcpy可以拷贝任意类型
void * memcpy ( void * destination, const void * source, size_t num );
1.函数memcpy从source的位置开始向后复制num个字节的数据到destination的内存位置。
2.这个函数在遇到 '\0' 的时候并不会停下来。
3.如果source和destination有任何的重叠,复制的结果都是未定义的。
4.为避免溢出,目标参数和源参数指向的数组的大小应至少为 num 个字节,并且不应重叠(对于重叠的内存块,memmove 是一种更安全的方法)。
2.代码实现
#include<stdio.h>
#include<assert.h>
//memcpy
void* my_memcpy(void* dst, const void* src, size_t count)
{
void* ret = dst;
assert(dst);
assert(src);
while (count--) {
*(char*)dst = *(char*)src;
dst = (char*)dst + 1;
src = (char*)src + 1;
}
return(ret);
}
int main()
{
int a[5] = { 1,2,3 };
int b[2] = { 4,5 };
my_memcpy(a, b, sizeof(b));
int n = sizeof(a) / sizeof(a[0]);
for (int i = 0; i < n; i++) {
printf("%d", a[i]);
}
return 0;
}
二、memmove
1.函数介绍
void * memmove ( void * destination, const void * source, size_t num );
1.和memcpy的差别就是memmove函数处理的源内存块和目标内存块是可以重叠的。
2.如果源空间和目标空间出现重叠,就得使用memmove函数处理。
2.代码实现
void* my_memmove(void* dst, const void* src, size_t count)
{
void* ret = dst;
if (dst <= src || (char*)dst >= ((char*)src + count)) {
while (count--) {
*(char*)dst = *(char*)src;
dst = (char*)dst + 1;
src = (char*)src + 1;
}
}
else {
dst = (char*)dst + count - 1;
src = (char*)src + count - 1;
while (count--) {
*(char*)dst = *(char*)src;
dst = (char*)dst - 1;
src = (char*)src - 1;
}
}
return(ret);
}
int main()
{
int a[5] = { 1,2,3 };
my_memmove(a, a+2, 4);
int n = sizeof(a) / sizeof(a[0]);
for (int i = 0; i < n; i++) {
printf("%d", a[i]);
}
return 0;
}