目录
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C 语言基础入门
C
语言在 string.h
中 strcpy
函数和 strcpy_s
函数,可用完成 char 字符串拷贝,对于字符串拷贝,还有 memcpy
函数也能完成,语法如下:
/* *描述:此类函数是用于对字符串进行复制(拷贝),属于内存拷贝! * *参数: * [out] dst:拷贝完成之后的字符串 * [in] src :需要拷贝的字符串 * [in] n :需要拷贝的字节数 * *返回值:指向 dst 这个字符串的指针 *注意:如果需要拷贝的字节数n 大于 dst 的内存大小,程序会崩溃 */ void *memcpy(void *dst, void *src, unsigned int n);
注意:
1.strcpy
函数和 strcpy_s
函数在拷贝过程中,如果遇到'\0'
结束符,那么直接结束拷贝;memcpy 函数拷贝过程中就算遇到'\0'
结束符也不会结束;
strcpy 函数和 strcpy_s 函数 属于字符串拷贝; memcpy 函数属于内存拷贝;
2.如果使用 memcpy 函数提示 error:4996,请参考:error C4996: ‘fopen’: This function or variable may be unsafe
error C4996: 'memcpy': This function or variable may be unsafe. Consider using memcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
3.必须保证 dst
空间足够大,能够容纳 src
,如果 dst
内存空间大小比 src
更小,会导致溢出错误,引起程序崩溃!可以通过 sizeof
函数查看内存内存大小,举个例子:50ml
的水杯能倒进 500ml
的水杯没问题,500ml
的水杯倒进 50ml
的水杯,会溢出很多水;
/******************************************************************************************/ //@Author:猿说编程 //@Blog(个人博客地址): www.codersrc.com //@File:C语言教程 - C语言 memcpy 函数 //@Time:2021/06/03 08:00 //@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累! /******************************************************************************************/ #include "stdafx.h" #include<stdlib.h> #include<stdio.h> #include<string.h> #include "windows.h" //error C4996: 'memcpy': This function or variable may be unsafe. Consider using memcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. #pragma warning( disable : 4996) void main() { char src[1024] = { "C/C++教程-memcpy函数 - www.codersrc.com" }; char dst[1024] = { 0 }; printf("memcpy之前 dst:%s\n", dst); //空字符串 memcpy(dst, src , sizeof(src)/sizeof(char)); printf("memcpy之后 dst:%s\n", dst);// printf("\n"); system("pause"); } /* 输出: memcpy之前 dst: memcpy之后 dst:C/C++教程-memcpy函数 - www.codersrc.com 请按任意键继续. . . */
在 char
字符串中有作介绍,字符串默认都是'\0'
结尾,strcpy
函数或者 strcpy_s
函数在拷贝过程中,如果遇到'\0'
结束符,那么直接结束拷贝,看下面例子:
/******************************************************************************************/ //@Author:猿说编程 //@Blog(个人博客地址): www.codersrc.com //@File:C语言教程 - C语言 memcpy函数 //@Time:2021/06/03 08:00 //@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累! /******************************************************************************************/ char src[1024] = { "C/C++教程-strcpy函数\0 - www.codersrc.com" }; char dst[1024] = { 0 }; printf("strcpy之前 dst:%s\n", dst); strcpy(dst, src ); printf("strcpy之后 dst:%s\n", dst); printf("\n"); system("pause"); /* 输出: strcpy之前 dst: strcpy之后 dst:C/C++教程-strcpy函数 请按任意键继续. . . */
重上面的输出结果可以看出:strcpy
函数在拷贝的时候,如果遇到'\0'
,那么拷贝直接结束,所以上面使用 strcpy
拷贝的时候,dst
字符串明显少了一段字符" - www.codersrc.com"
;
而 memcpy 函数不同,memcpy 属于内存拷贝,即便在拷贝过程中遇到'\0'
结束符,也不会结束拷贝,举个例子:
/******************************************************************************************/ //@Author:猿说编程 //@Blog(个人博客地址): www.codersrc.com //@File:C语言教程 - C语言 memcpy函数 //@Time:2021/06/03 08:00 //@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累! /******************************************************************************************/ char src[1024] = { "C/C++教程-memcpy函数\0 - www.codersrc.com" }; char dst[1024] = { 0 }; printf("memcpy之前 dst:%s\n", dst); memcpy(dst, src, sizeof(src)/sizeof(char)); printf("memcpy之后 dst:%s\n", dst); printf("\n"); system("pause"); /* 输出: memcpy之前 dst: memcpy之后 dst:C/C++教程-memcpy函数\0 - www.codersrc.com 请按任意键继续. . . */
很明显,memcpy
函数内存拷贝的时候,'\0'
仅仅是当作了内存中的数据,并不代表拷贝结尾;
如果使用 memcpy
的时候需要拷贝的字符大小比 dst
内存大时,程序运行会崩溃,memcpy
函数在字符串拷贝的时候并不会检查两个字符串空间大小,所有很容易产生崩溃,这也是 error C4996
的原因之一,举个例子:
/******************************************************************************************/ //@Author:猿说编程 //@Blog(个人博客地址): www.codersrc.com //@File:C语言教程 - C语言 memcpy函数 //@Time:2021/06/03 08:00 //@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累! /******************************************************************************************/ #include "stdafx.h" #include<stdlib.h> #include<stdio.h> #include<string.h> #include "windows.h" //error C4996: 'memcpy': This function or variable may be unsafe. Consider using memcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. #pragma warning( disable : 4996) void main() { char src[1024] = { "C/C++教程-memcpy函数\0 - www.codersrc.com" }; char dst[10] = { 0 }; int len_src = sizeof(src)/sizeof(char); // 1024 int len_dst = sizeof(dst) / sizeof(char); //10 printf("len_src:%d len_dst:%d\n", len_src,len_dst); printf("memcpy之前 dst:%s\n", dst); memcpy(dst, src, len_src); // 很明显 dst 的空间大小只有10个字节并不能完全存放 src 1024个字节,程序崩溃 printf("memcpy之后 dst:%s\n", dst); } /* 输出: len_src:1024 len_dst:10 */
未经允许不得转载:猿说编程 » C 语言 memcpy 函数
本文由博客 - 猿说编程 猿说编程 发布!