C语言 strcpy_s 函数

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

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


一.strcpy_s函数简介

       C 语言string.hstrcpy 函数,可用完成 char 字符串拷贝;而今天即将介绍的 strcpy_s 函数其实和 strcpy 函数类似, strcpy 函数使用时,我们也注意到了两个问题:


1.strcpy 函数报错:error C4996

详细介绍请参考:C语言 error C4996: This function or variable may be unsafe

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.
解决办法:include 之后添加代码
#pragma warning( disable : 4996)

2.strcpy 函数没有方法来保证有效的缓冲区尺寸,使用不安全

       strcpy_s 是系统的安全函数,微软在 2005 后建议用一系统所谓安全的函数,这中间就有 strcpy_s 取代了 strcpy
       strcpy 函数没有方法来保证有效的缓冲区尺寸,所以它仅仅能假定缓冲足够大来容纳要拷贝的字符串。在程序执行时,这将导致不可预料的行为,容易导致程序崩溃,例如如下代码:

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


char src[1024] = { "C/C++教程-strcpy函数\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("strcpy之前 dst:%s\n", dst);
strcpy(dst, src);  // 很明显 dst 的空间大小并不能完全存放 src,程序会崩溃
printf("strcpy之后 dst:%s\n", dst);

二.strcpy_s函数语法

       strcpy_s 函数可以通过设置目标缓冲区大小来够避免上面的不可预料的行为,语法如下:

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

三.strcpy_s函数实战

1.strcpy_s 函数简单使用


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

#include "stdafx.h"
#include<stdlib.h>
#include<stdio.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)
void main()
{
    char src[1024] = { "C/C++教程-strcpy_s函数 - www.codersrc.com" };
    char dst[1024] = { 0 };
    int len_src = sizeof(src)/sizeof(char);
    int len_dst = sizeof(dst) / sizeof(char);
    printf("len_src:%d len_dst:%d\n", len_src,len_dst);
    printf("strcpy_s之前 dst:%s\n", dst);
    strcpy_s(dst, sizeof(dst)/sizeof(dst[0]), src); 
    printf("strcpy_s之后 dst:%s\n", dst);
    printf("\n");
    system("pause");
}
/*
输出:
len_src:1024 len_dst:1024
strcpy_s之前 dst:
strcpy_s之后 dst:C/C++教程-strcpy_s函数 - www.codersrc.com
请按任意键继续. . .
*/

       注意:strcpy_s 函数第二个参数,是设置目标缓冲区大小,并非原始缓冲区大小

strcpy_s(dst, sizeof(dst)/sizeof(dst[0]), src); //正确写法
strcpy_s(dst, sizeof(src)/sizeof(src[0]), src);  //错误写法

2.strcpy_s 函数拷贝内容以’\0’结尾

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

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


char src[1024] = { "C/C++教程-strcpy_s函数\0 - www.codersrc.com" };
char dst[1024] = { 0 };
printf("strcpy_s之前 dst:%s\n", dst);
strcpy_s(dst, sizeof(dst)/sizeof(dst[0]), src);
printf("strcpy_s之后 dst:%s\n", dst);
printf("\n");
system("pause");
/*
输出:
strcpy_s之前 dst:
strcpy_s之后 dst:C/C++教程-strcpy_s函数
请按任意键继续. . .
*/

       重上面的输出结果可以看出:strcpy_s 函数在拷贝的时候,如果遇到 '\0' ,那么拷贝直接结束,所以上面使用 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 函数

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

请登录后发表评论

    暂无评论内容