memcpy 是内存拷贝, strcpy 是字符串拷贝 strcpy 遇字符串`\0` 而结束, 只限字符串, memcpy 指定字节数数量拷贝, 不限类型 在内存区有重叠的情况下, strcpy会崩溃, 而memcpy不会