码迷,mamicode.com
首页 > 其他好文 > 详细

码海拾遗:strcpy()、strncpy()和strcpy_s()区别

时间:2017-11-04 23:33:07      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:bcb   div   ide   argv   内存区域   自动   字符串   const   位置   

  1、strcpy()

  原型:char *strcpy(char *dst,const char *src)

  功能:将以src为首地址的字符串复制到以dst为首地址的字符串,包括‘\0‘结束符,返回dst地址。要求:src和dst所指内存区域不可以重叠且dst必须有足够的空间来容纳src的字符串,若dst空间不足,编译时并不会报错,但执行时因系统不同会出现不同的结果:Mac系统提示“Abort trap:6”(Mac);CentOS7系统会正常运行(可能是个例,可以正常运行)

  测试代码:

技术分享
 1 #include <stdio.h>
 2 #include <string.h>
 3 
 4 int main(int argc,char* argv[])
 5 {
 6     char buf[2];
 7     char *str = "hello world";
 8 
 9     strcpy(buf,str);
10     printf("buf:%s\nsizeof(buf) = %ld\nstrlen(buf) = %ld\n",
11            buf,sizeof(buf),strlen(buf));
12 
13     return 0;
14 }
View Code

 

  2、strncpy()

  原型:char *strncpy(char *dst,const char *src,size_t len)

  功能:从以src为首地址的字符串中之多复制len个字符到以dst为首地址的字符串。如果在[0,len]之间没有‘\0‘结束符,则dst中没有结束符。

  如果len大于src的长度,则dst中多余位置自动置为null

  测试代码:  

技术分享
 1 #include <stdio.h>
 2 #include <string.h>
 3 
 4 int main(int argc,char* argv[])
 5 {
 6     char buf[20];
 7     char *str = "hello world";
 8 
 9     strncpy(buf,str,20);
10     printf("buf:%s\nsizeof(buf) = %ld\nstrlen(buf) = %ld\n",
11            buf,sizeof(buf),strlen(buf));
12 
13     return 0;
14 }
View Code

  如果len小于src的长度,则dst中没有结束符,dst输出时会出现乱码,直至碰到‘\0‘结束符为止。

  测试代码:

技术分享
 1 #include <stdio.h>
 2 #include <string.h>
 3 
 4 int main(int argc,char* argv[])
 5 {
 6     char buf[4];
 7     char *str = "hello world";
 8 
 9     strncpy(buf,str,5);
10     printf("buf:%s\nsizeof(buf) = %ld\nstrlen(buf) = %ld\n",
11            buf,sizeof(buf),strlen(buf));
12 
13     return 0;
14 }
View Code

 

码海拾遗:strcpy()、strncpy()和strcpy_s()区别

标签:bcb   div   ide   argv   内存区域   自动   字符串   const   位置   

原文地址:http://www.cnblogs.com/lianshuiwuyi/p/7784870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!