C語言 strcpy 函式 - C語言零基礎入門教程
阿新 • • 發佈:2021-08-11
目錄
零基礎 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 函式實戰
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 請按任意鍵繼續. . . */
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函式
請按任意鍵繼續. . .
*/
重上面的輸出結果可以看出: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 迴圈
- C 語言 break 和 continue
- C 語言 while 迴圈
- C 語言 do while 和 while 迴圈
- C 語言 switch 語句
- C 語言 goto 語句
- C 語言 char 字串
- C 語言 strlen 函式
- C 語言 sizeof 函式
- C 語言 sizeof 和 strlen 函式區別
- C 語言 strcpy 函式
未經允許不得轉載:猿說程式設計 » C 語言 strcpy 函式
本文由部落格 - 猿說程式設計 猿說程式設計 釋出!