memcpy()用于将一个内存块从一个位置复制到另一个位置。在字符串.h中声明
// Copies "numBytes" bytes from address "from" to address "to"
void * memcpy(void *to, const void *from, size_t numBytes);
下面是一个示例C程序,用于显示memcpy()的工作。
/* A C program to demonstrate working of memcpy */
#include
#include
int main ()
{
char str1[] = "Geeks";
char str2[] = "Quiz";
puts("str1 before memcpy ");
puts(str1);
/* Copies contents of str2 to sr1 */
memcpy (str1, str2, sizeof(str2));
puts("\nstr1 after memcpy ");
puts(str1);
return 0;
}
输出:
str1 before memcpy
Geeks
str1 after memcpy
Quiz
笔记:
1)memcpy()不检查溢出或\ 0
2)当源地址和目标地址重叠时,memcpy()会导致问题。
memmove()是另一个可以很好地处理重叠的库函数。
编写自己的memcpy()和memmove()
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。