设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 311|回复: 3
打印 上一主题 下一主题

谁能解释下

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 02:27:35 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include<iostream>
using namespace std;
int main()
{
int top=0;
char ch,*p;
p=new char;
while(ch!='\n')
{
ch=getchar();

p[top]=ch;
top++;

};
cout<<p;
return 0;
}
如果我输入"abcd",我认为应当输出也是"abcd",但怎么输出"abcd"后后面还有一段乱码?
#include<iostream>
using namespace std;
int main()
{
int top=0;
char ch,*p;
p=new char;
while(ch!='\n')
{
ch=getchar();

p[top]=ch;
top++;

};
p[top]='\0';
cout<<p;
return 0;
}
如果改成这样,输出的字符串后面还有一个换行符,如果改成p[top-1]='\0';就正确了.
我自己试出来的,但我不知道原因,谁能解释下
2#
发表于 2009-11-3 02:27:37 | 只看该作者
p=new char;
这样做只分配了一个地址空间给一个字符。
p[top]的寻址是非法的。

所以都不对。
p=new char[100];
再用后面种加'\0'结尾的方法就对了。
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 02:27:40 | 只看该作者
ch = getchar(); //ch 获得 \n
p[top] = ch ; //p[top] 被赋值为\n
top++; //top自增;
//然后判断ch != '\n',跳出循环。
p[top] = '\0'; //p[top]为 \n 后一个数。

改为 p[top-1] = '\0'; //原来的\n 被 \0 覆盖

同意楼上的。
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-3 02:27:44 | 只看该作者
谢谢楼上两位,思想一时没转过来,见笑
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 06:33 , Processed in 0.082137 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表