免费注册 查看新帖 |

Chinaunix

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

core dumped 新手请大家帮我看下这段程序 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-09-08 20:44 |只看该作者 |倒序浏览
#include<iostream>

#include<assert.h>

using namespace std;

char * str_copy(char *str1,const char *str2){

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;assert((str1!=NULL)&&(str2!=NULL));

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;char *temp=str1;

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;while((*str1++=*str2++)!='\0');

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return temp;

}

int main(){

&nbsp;&nbsp;&nbsp;&nbsp;char * p ="test123";

&nbsp;&nbsp;&nbsp;&nbsp;char * q ="test456";

&nbsp;&nbsp;&nbsp;&nbsp;char * temp=str_copy(q,p);

&nbsp;&nbsp;&nbsp;&nbsp;cout<<temp<<endl;

&nbsp;&nbsp;&nbsp;&nbsp;return 0;

}

论坛徽章:
0
2 [报告]
发表于 2007-09-08 21:24 |只看该作者
q所指向的字符串为常量,不能改变

论坛徽章:
0
3 [报告]
发表于 2007-09-08 21:50 |只看该作者
LS请明示阿 .

我gdb调试 显示第八行while((*str1++=*str2++)!='\0');段错误

论坛徽章:
0
4 [报告]
发表于 2007-09-08 21:53 |只看该作者
"test456"是字符串常量,存放在只读存储区。
因此当调用str_cpy修改q指向的地址时,出现core dump。

论坛徽章:
0
5 [报告]
发表于 2007-09-08 21:56 |只看该作者
兄弟,你 都 用上 GDB了 ,怎么这个问题都 看不 出来

论坛徽章:
0
6 [报告]
发表于 2007-09-08 22:10 |只看该作者
原帖由 3040602024 于 2007-9-8 21:56 发表
兄弟,你 都 用上 GDB了 ,怎么这个问题都 看不 出来

论坛徽章:
0
7 [报告]
发表于 2007-09-09 00:42 |只看该作者
nt main(){

    char*  p ="test123";

    char  q[] ="test456";

    char * temp=str_copy(q,p);

    cout<<temp<<endl;

    return 0;

}
把q改成数组
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP