免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
123下一页
最近访问板块 发新帖
查看: 4596 | 回复: 24
打印 上一主题 下一主题

string copy problem [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-07-11 16:35 |只看该作者 |倒序浏览

  1. #include <stdio.h>;
  2. #include <stdlib.h>;

  3. void copy_string(char *from, char *to);

  4. int main(void) {
  5.         char *a = "I am a teacher.";
  6.         char *b = "You are a student.";
  7.         printf("\nstring a = %s\nstring b = %s\n", a, b);
  8.         copy_string(a, b);
  9.         printf("\nstring a = %s\nstring b = %s\n", a, b);
  10.         return 0;
  11. }

  12. void copy_string(char *from, char *to) {
  13.         for(; *from != '\0'; from++, to++) {
  14.                 *to = *from;
  15.         }
  16.         *to = '\0';
  17. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2005-07-11 16:43 |只看该作者

string copy problem

from后面哪来的\0?

论坛徽章:
0
3 [报告]
发表于 2005-07-11 16:53 |只看该作者

string copy problem

char *a = "I am a teacher.";
char *b = "You are a student.";
是两个常量指针,应该不可以进行这样的操作吧“*to = *from”

论坛徽章:
0
4 [报告]
发表于 2005-07-11 16:56 |只看该作者

string copy problem

字符串后面没有'\0'吗?

论坛徽章:
0
5 [报告]
发表于 2005-07-11 17:00 |只看该作者

string copy problem

但是用debug看,在最后一个printf的时候a == b == "I am a teacher."

论坛徽章:
0
6 [报告]
发表于 2005-07-11 17:33 |只看该作者

string copy problem

说一下这段代码的问题吧!不知道你记不记得标准c库中strcpy函数有一个要求就是目标字符串必须具有足够存储源字符串的存储区,象你这样写代码,很容易出现溢出情况.假如你的源字符串是"You are a student.",目标字符串存储的是"I am a teacher.",也就是说当源字符串的长度大于目标字符串的长度时,按照你的代码会产生溢出,也就是你写入了不该写入的内存.记得微软出的一本叫做"Write security code"的书就介绍了这一情况,还可以在一些关于溢出代码攻击的黑客教程中找到有关内容.
你还是使用具有足够长度的数组来分配内存,或者干脆使用malloc,free在堆中动态分配足够的空间.

论坛徽章:
0
7 [报告]
发表于 2005-07-11 20:09 |只看该作者

string copy problem

screenshot

Screenshot.jpg (6.91 KB, 下载次数: 69)

Screenshot.jpg

论坛徽章:
0
8 [报告]
发表于 2005-07-11 20:42 |只看该作者

string copy problem

[quote]原帖由 "liudengme"][/quote 发表:

第一:这样进行字符串操作是很危险的
第二:每个字符串后面都有一个\0的,作为字符串结束的标志:)

论坛徽章:
0
9 [报告]
发表于 2005-07-11 21:01 |只看该作者

string copy problem

这是《C程序设计》指针一章的一个例题,因为看到有错才想到要做来看看
本来是

  1. void copy_string(char *from, char *to) {
  2.         for(; *from != '\0'; from++, to++) {
  3.                 *to = *from;
  4.         }
  5.         *to = '\0';
  6. }

  7. int main(void) {
  8.         char a = "I am a teacher.";
  9.         char b = "You are a student.";
  10.         printf("\nstring a = %s\nstring b = %s\n", a, b);
  11.         copy_string(a, b);
  12.         printf("\nstring a = %s\nstring b = %s\n", a, b);
  13. }
复制代码

论坛徽章:
0
10 [报告]
发表于 2005-07-11 23:37 |只看该作者

string copy problem

前面定义了常量指针,使不可以被重写的。可能出错。
还有就是长度问题。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP