C语言 strcpy 和 strcpy_s 函数区别

ChatGPT 3.5 国内中文镜像站免费使用啦

零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C 语言基础入门


一.strcpy_s函数/strcpy函数简介

1.strcpy函数语法

/*
*描述:此类函数是用于对字符串进行复制(拷贝)。
*
*参数: 
*   [in] strSource:需要拷贝的字符串
*   [out] strDestination:拷贝完成之后的字符串
*   
*返回值:指向 strDestination 这个字符串的指针
*/
char* strcpy(char* strDestination, const char* strSource);

2.strcpy_s函数语法

/*
*描述:此类函数是用于对字符串进行复制(拷贝)。
*
*参数: 
*   [out] strDestination:拷贝完成之后的字符串
*   [in] numberOfElements: strDestination目标缓冲区长度
*   [in] strSource:需要拷贝的字符串
*
*返回值:返回一个整数,0表示复制成功,返回非0值代表复制不成功,不同的值表示不同的错误,具体内容可以查阅MSDN手册
*/
errno_t strcpy_s(char *strDestination , size_t numberOfElements , const char *strSource);

       C 语言string.hstrcpy 函数和 strcpy_s 函数,都可以完成 char 字符串拷贝,注意:

       1.strcpy 函数和 strcpy_s 函数在拷贝过程中,如果遇到'\0'结束符,那么直接结束拷贝;memcpy 函数 / memcpy_s 函数拷贝过程中就算遇到'\0'结束符也不会结束;

       2.如果使用strcpy函数都会提示error:4996,编译器更加推荐使用strcpy_s函数,否则也可以参考: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.不管是 strcpy_s 函数或者 strcpy 函数 必须保证 dst 空间足够大,能够容纳src ,如果 dst 内存空间大小比 src 更小,会导致溢出错误,引起程序崩溃!可以通过 sizeof 函数查看内存内存大小,举个例子: 50ml 的水杯能倒进 500ml 的水杯没问题, 500ml 的水杯倒进50ml 的水杯,会溢出很多水;


二.strcpy/strcpy_s函数实战

       char 字符串中有作介绍,字符串默认都是 '\0' 结尾, strcpy 函数或者 strcpy_s 函数在拷贝过程中,如果遇到 '\0' 结束符,那么直接结束拷贝,看下面例子:

/******************************************************************************************/
//@Author:猿说编程
//@Blog(个人博客地址): www.codersrc.com
//@File:C语言教程 - C语言 strcpy 和 strcpy_s 函数区别
//@Time:2021/06/03 08:00
//@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
/******************************************************************************************/

#include "stdafx.h"
#include "stdio.h"
#include "stdlib.h"
#include<string.h>
#include "windows.h"
//error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
#pragma warning( disable : 4996)
int main()
{
    char src[1024] = { "C/C++教程-strcpy函数\0 - www.codersrc.com" };
    char dst1[1024] = { 0 };
    char dst2[1024] = { 0 };
    printf("strcpy之前 dst1:%s\n", dst1);
    strcpy(dst1, src);
    printf("strcpy之后 dst1:%s\n", dst1);
    printf("---------------------------------\n");
    printf("strcpy_s之前 dst2:%s\n", dst2);
    strcpy_s(dst2,sizeof(dst2)/sizeof(char),src);
    printf("strcpy_s之后 dst2:%s\n", dst2);
    system("pause");
    return 0;
}
/*
输出:
strcpy之前 dst1:
strcpy之后 dst1:C/C++教程-strcpy函数
---------------------------------
strcpy_s之前 dst2:
strcpy_s之后 dst2:C/C++教程-strcpy函数
请按任意键继续. . .
*/

       重上面的输出结果可以看出:strcpy 函数 / strcpy_s 函数在拷贝的时候,如果遇到'\0',那么拷贝直接结束,所以上面使用 strcpy / strcpy_s 函数拷贝的时候,dst 字符串明显少了一段字符" - www.codersrc.com";


三.猜你喜欢

  1. 安装 Visual Studio
  2. 安装 Visual Studio 插件 Visual Assist
  3. Visual Studio 2008 卸载
  4. Visual Studio 2003/2015 卸载
  5. 设置 Visual Studio 字体/背景/行号
  6. C语言格式控制符/占位符
  7. C语言逻辑运算符
  8. C语言三目运算符
  9. C语言逗号表达式
  10. C语言自加自减运算符(++i / i++)
  11. C语言 for 循环
  12. C语言 break 和 continue
  13. C语言 while 循环
  14. C语言 do while 和 while 循环
  15. C语言 switch 语句
  16. C语言 goto 语句
  17. C语言 char 字符串
  18. C语言 strlen 函数
  19. C语言 sizeof 函数
  20. C语言 sizeof 和 strlen 函数区别
  21. C语言 strcpy 函数
  22. C语言 strcpy_s 函数
  23. C语言 strcpy 和 strcpy_s 函数区别

ChatGPT 3.5 国内中文镜像站免费使用啦
© 版权声明
THE END
喜欢就支持一下吧
点赞4 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容