关于memcpy
摘要:
对于memcpy,网上对其的实现大多是简单的循环拷贝,如果拷贝的时候存在交叉,就可能出问题: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 void *memcpy(void *memTo, const void *memFrom, size_t size) 7 { 8 if((memTo == NULL) || (memFrom == NULL)) //memTo和memFrom必须有效 9 return NULL;10 char *tempFrom = (char *)memFrom... 阅读全文