#include <cstring> void *memcpy( void *to, const void *from, size_t count );
memcpy() 函数从数组 from 中复制 count 个字符到数组 to。memcpy() 的返回值是 to。如果 to 和 from 重叠,则 memcpy() 的行为未定义。