1、复制的内容不同。strcpy只能复制字符串,而memcpy可以复制任意内容,例如字符数组、整型、结构体、类等。
2、复制的方法不同。strcpy不需要指定长度,它遇到被复制字符的串结束符"\0"才结束,所以容易溢出。memcpy则是根据其第3个参数决定复制的长度。
3、用途不同。通常在复制字符串时用strcpy,而需要复制其他类型数据时则一般用memcpy
char* strcopy(char* dest, const char* source)
{
if (NULL == dest || NULL == source)
{
return NULL;
}
char* addr = dest;
while ((*dest++ = *source++) != '\0')
return addr;
}
void* memcopy(void* dest, void* soutce, size_t n)
{
if (NULL == dest || NULL == source)
{
return NULL;
}
void* addr = dest;
while (n-- > 0 )
{
*dest++ = *source++;
}
return addr;
}