C语言-字符串函数的实现(二)之strcpy
C语言中的字符串函数有如下这些
- 获取字符串长度
- strlen
- 长度不受限制的字符串函数
- strcpy
- strcat
- strcmp
- 长度受限制的字符串函数
- strncpy
- strncat
- strncmp
- 字符串查找
- strstr
- strtok
- 错误信息报告
- strerror
接下来看看如何实现它们
长度不受限制的字符串函数
strcpy
我们看看文档是怎样说的,如下
char * strcpy ( char * destination, const char * source );
Copy string
字符串拷贝(字符串复制)
Copies the C string pointed by source into the array pointed by destination, including the terminating null character (and stopping at that point).
复制由字符指针source指向的C字符串到另一个字符数组中,该字符数组由字符指针destination指向
To avoid overflows, the size of the array pointed by destination shall be long enough to contain the same C string as source (including the terminating null character), and should not overlap in memory with source.
为避免溢出,由destination指向的字符数组的大小需要足够长,足够包含住源字符串(包含'\0')
综上,可以知道
- 会将源字符串中的 '\0' 拷贝到目标空间,源字符串必须以 '\0' 结束。
- 目标空间必须足够大,以确保能存放源字符串。
怎么实现拷贝?
int main()
{
char arr1[] = "abcdefghi";
char arr2[] = "bit";
// 把arr2的内容拷贝到arr1中
//strcpy(arr1, arr2);
// 怎么拷贝?
my_strcpy(arr1, arr2);
printf("%s\n", arr1);
return 0;
}
实现
断言指针不为空是个好习惯~
//char* my_strcpy(char* dest, char* src)
// src加上const,为什么?因为我们只需要拷贝,不需要改动源字符串,防止发生修改,所以加上const修饰
char* my_strcpy(char* dest, const char* src)
{
assert(dest != NULL);
assert(src != NULL);
while (*src != '\0')
{
*dest = *src;
dest++;
src++;
}
*dest = *src; // '\0'
// 返回目的空间的起始地址
return dest;
}
源字符串拷贝到目的空间,寻找'\0',不是'\0'的就执行*dest = *src
,把源字符赋值给目的空间,然后两个指针都往后偏移,也就是都进行++,当*src为'\0'
时,说明源字符串已经到结尾了,就退出这个循环,直接将'\0'赋值给*dest
,最后返回dest
可以进行优化,如下
char* my_strcpy(char* dest, const char* src)
{
assert(dest != NULL);
assert(src != NULL);
// 优化
while (*src != '\0')
{
*dest++ = *src++;
}
*dest = *src; // '\0'
// 返回目的空间的起始地址
return dest;
}
当然还可以继续优化,变得更加简洁,直接将*dest++ = *src++
作为判断条件,同时还会执行操作,如下
char* my_strcpy(char* dest, const char* src)
{
assert(dest != NULL);
assert(src != NULL);
// 优化
// 拷贝src指向的字符串到dest指向的空间,包含'\0'
char* rest = dest;
while (*dest++ = *src++)
{
;
}
// 返回目的空间的起始地址
return rest;
}
C语言-字符串函数的实现(二)之strcpy的更多相关文章
- 13-C语言字符串函数库
目录: 一.C语言字符串函数库 二.用命令行输入参数 回到顶部 一.C语言字符串函数库 1 #include <string.h> 2 字符串复制 strcpy(参数1,参数2); 参数1 ...
- C语言字符串函数大全
C语言字符串函数大全 函数名: stpcpy 功 能: 拷贝一个字符串到另一个 用 法: char *stpcpy(char *destin, char *source); 程序例: #include ...
- 07 --C语言字符串函数
1)字符串操作 复制 strcpy(p, p1) 复制字符串 strncpy(p, p1, n) 复制指定长度字符串 strdup(char *str) 将串拷贝到新建的位置处 ...
- C语言-字符串函数的实现(一)之strlen
C语言中的字符串函数有如下这些 获取字符串长度 strlen 长度不受限制的字符串函数 strcpy strcat strcmp 长度受限制的字符串函数 strncpy strncat strncmp ...
- C语言-字符串函数的实现(五)之strstr
C语言中的字符串函数有如下这些 获取字符串长度 strlen 长度不受限制的字符串函数 strcpy strcat strcmp 长度受限制的字符串函数 strncpy strncat strncmp ...
- C语言字符串函数例子程序大全 – string相关
关于字符串函数的应用细则,例子程序 – jerny 函数名: stpcpy 功 能: 拷贝一个字符串到另一个 用 法: char *stpcpy(char *destin, char *source) ...
- 【C++实现python字符串函数库】二:字符串匹配函数startswith与endswith
[C++实现python字符串函数库]字符串匹配函数startswith与endswith 这两个函数用于匹配字符串的开头或末尾,判断是否包含另一个字符串,它们返回bool值.startswith() ...
- c语言字符串函数详解
转载请注明来源:https://www.cnblogs.com/hookjc/ oid *memset(void *dest, int c, size_t count); 将dest前面count个字 ...
- 关于C语言字符串函数使用的一点心得
就字符串的拼接函数为例strcat. 原型:extern char *strcat(char *dest,char *src);用法:#include <string.h> 功能:把src ...
随机推荐
- 不能回滚的Redis事务还能用吗
前言 事务是关系型数据库的特征之一,那么作为 Nosql 的代表 Redis 中有事务吗?如果有,那么 Redis 当中的事务又是否具备关系型数据库的 ACID 四大特性呢? Redis 有事务吗 这 ...
- git配置了公钥,在下载项目时为什么还要输入密码
配置git地址:https://www.cnblogs.com/lz0925/p/10794616.html 原文链接:https://blog.csdn.net/xiaomengzi_16/arti ...
- 5G组网方案:NSA和SA
目录 5G组网的8个选项 独立组网(SA) 选项1 选项2 选项5 选项6 总结 非独立组网(NSA) 选项3系列 选项3 选项3a 选项3x 选项7系列 选项4系列 选项8 演进路线 5G组网的8个 ...
- 微信支付 V3 的 Java 实现 Payment Spring Boot-1.0.7.RELEASE 发布
Payment Spring Boot 是微信支付V3的Java实现,仅仅依赖Spring内置的一些类库.配置简单方便,可以让开发者快速为Spring Boot应用接入微信支付. 功能特性 实现微信支 ...
- 后端程序员之路 42、Semaphore
前面学习了Pthreads,了解了线程和线程同步,而同步这个东西,与信号量是密不可分的.下面讨论的主要是Pthreads里的semaphore.h,而不是sys/sem.h [Linux]线程同步之信 ...
- 恭喜!Apache Hudi社区新晋两位Committer
1. 介绍 经过Apache Hudi项目委员会讨论及投票,向WangXiangHu和LiWei 2人发出Committer邀请,2人均已接受邀请并顺利成为Committer,也使得Apache Hu ...
- 关闭ubuntu防火墙
1.关闭ubuntu的防火墙 ufw disable 开启防火墙 ufw enable 2.卸载了iptables apt-get remove iptables 3.关闭ubuntu中的防火墙的其余 ...
- myeclipse js报错
Myeclipse 版本10.1 加载的js报错,解决方法: window -> preferences -> myeclipse -> validation,在右边下拉框找到 Ja ...
- dex、apk完整性校验
对Dex进行完整性的检查,可通过CRC,或者Hash值.可将校验值放到String资源文件里,或者放到服务器中. 在代码中完成校验值对比逻辑,此部分代码后续不能再改变,否则CRC值会发生变化: 从生成 ...
- 2019 GDUT Rating Contest I : Problem G. Back and Forth
题面: G. Back and Forth Input file: standard input Output file: standard output Time limit: 1 second Mem ...