模拟实现memcpy函数

1.描述

  1. void * memcpy ( void * destination, const void * source, size_t num );
  2. 返回值,参数指针类型为void*,失败也返回目的地址的头指针
  3. 按字节拷贝,源地址内容不可改,实际可能会被改。
  4. 没有严格的安全检查,空指针,以及重叠问题,越界访问。

2.代码展示

#include<stdio.h>
#include<stdlib.h>
#include<assert.h>
#include<string.h>
void* mymemcpy(void* dst,const void* src,size_t num)
	//void * memcpy ( void * destination, const void * source, size_t num );
{
	//num是无符号整型,按字节。
	assert(dst&&src);
	unsigned char* pdst = (unsigned char*)dst;
	unsigned char* psrc = (unsigned char*)src;
	int lend = sizeof(pdst) / sizeof(pdst[0]);
	int lens = sizeof(psrc) / sizeof(psrc[0]);
	if ((pdst >= psrc && pdst < psrc + num)
		|| (pdst < psrc&&psrc < pdst + num))
		return NULL;
	else
	{
		for (size_t i = 0; i < num; ++i)
		{
			pdst[i] = psrc[i];
		}
		return pdst;
	}

}
void test6()
{
	//不限定指针类型,按字节拷贝,重叠越界。
	int  arr1[10] = { -1,0,1,4,5};
	int  arr2[5] = { 255,127,8,9,10 };
	memcpy(arr1, arr2, 100);
	mymemcpy(arr1, arr2, 4);
	for (int i = 0; i < sizeof(arr1) / sizeof(arr1[0]); ++i)
	{
		printf("%d ", arr1[i]);
	}


	char str1[] = "hello xff";	
	char str2[] = { 'w','o','r','l','d' };
	void* ret1 = memcpy(str1, str2, 5);
	printf("%s %p\n", str1, ret1);

	void* ret2 = (char*)mymemcpy(str1, str2, 5);
	printf("%s %p\n", str1, ret2);
}
int main()
{
	test6();
	system("pause");
	return 0;
}

3.结果展示

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值