目錄
零基礎 C/C++ 學習路線推薦 : C/C++ 學習目錄 >> C 語言基礎入門
一.strcpy 函數簡介
C
語言在 string.h
中strcpy
函數,可用完成 char 字符串拷貝帐我,語法如下:
/*
*描述:此類函數是用于對字符串進行復制(拷貝)。
*
*參數:
* [in] strSource:需要拷貝的字符串
* [out] strDestination:拷貝完成之后的字符串
*
*返回值:指向 strDestination 這個字符串的指針
*/
char* strcpy(char* strDestination, const char* strSource);
注意:
1.strcpy
函數在拷貝過程中,如果遇到'\0'
結束符苦蒿,那么直接結束拷貝
2.如果使用 strcpy 函數提示 error:4996呆奕,請參考:error C4996: ‘fopen’: 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.
3.必須保證 strDestination
空間足夠大啰脚,能夠容納 strSource
效扫,如果 strDestination
內存空間大小比 strSource
更小看幼,會導致溢出錯誤展懈,引起程序崩潰销睁!可以通過 sizeof
函數查看內存內存大小,舉個例子:50ml
的水杯能倒進500ml
的水杯沒問題存崖,500ml
的水杯倒進 50ml
的水杯冻记,會溢出很多水;
二.strcpy 函數實戰(zhàn)
1.strcpy 函數簡單使用
/******************************************************************************************/
//@Author:猿說編程
//@Blog(個人博客地址): www.codersrc.com
//@File:C語言教程 - C語言 strcpy 函數
//@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函數 - 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函數 - www.codersrc.com
請按任意鍵繼續(xù). . .
*/
2.strcpy 函數拷貝內容以’\0’結尾
在 char
字符串中有作介紹供搀,字符串默認都是 '\0'
結尾隅居,strcpy
函數在拷貝過程中,如果遇到'\0'
結束符葛虐,那么直接結束拷貝胎源,看下面例子:
/******************************************************************************************/
//@Author:猿說編程
//@Blog(個人博客地址): www.codersrc.com
//@File:C語言教程 - C語言 strcpy 函數
//@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函數
請按任意鍵繼續(xù). . .
*/
重上面的輸出結果可以看出:strcpy
函數在拷貝的時候,如果遇到 '\0'
摄悯,那么拷貝直接結束赞季,所以上面使用 strcpy
拷貝的時候,dst
字符串明顯少了一段字符" - www.codersrc.com"
;
3.strcpy 函數注意崩潰問題
如果使用 strcpy
的時候 strDestination
內存大小比 strSource
內存大小更小奢驯,程序運行會崩潰申钩,strcpy
函數在字符串拷貝的時候并不會檢查兩個字符串大小,舉個例子:
/******************************************************************************************/
//@Author:猿說編程
//@Blog(個人博客地址): www.codersrc.com
//@File:C語言教程 - C語言 strcpy 函數
//@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函數\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);
}
/*
輸出:
len_src:1024 len_dst:10
*/
三.猜你喜歡
- 安裝 Visual Studio
- 安裝 Visual Studio 插件 Visual Assist
- Visual Studio 2008 卸載
- Visual Studio 2003/2015 卸載
- 設置 Visual Studio 字體/背景/行號
- C 語言格式控制符/占位符
- C 語言邏輯運算符
- C 語言三目運算符
- C 語言逗號表達式
- C 語言自加自減運算符(++i / i++)
- C 語言 for 循環(huán)
- C 語言 break 和 continue
- C 語言 while 循環(huán)
- C 語言 do while 和 while 循環(huán)
- C 語言 switch 語句
- C 語言 goto 語句
- C 語言 char 字符串
- C 語言 strlen 函數
- C 語言 sizeof 函數
- C 語言 sizeof 和 strlen 函數區(qū)別
- C 語言 strcpy 函數
未經允許不得轉載:猿說編程 ? C 語言 strcpy 函數
本文由博客 - 猿說編程 猿說編程 發(fā)布!