新微赢技术网
标题:
错在倒数第三行,不知是什么错
[打印本页]
作者:
梧桐雨love
时间:
2009-11-3 03:58
标题:
错在倒数第三行,不知是什么错
高手帮帮忙
#include<iostream.h>
class c
{
int l;
char *p;
public:
c(int i=0)
{
l=i;
p=new char [l];
}
char operator[](int)
{
int i;
static char ch;
if(i<l && i>=0)
return p[i];
else {cout<<"index is out of range"<<endl;return ch;}
}
};
void main()
{
int j;
c s1(6);
char *st="string";
for(j=0;j<8;j++)
s1[j]=st[j];
for(j=0;j<8;j++)
cout<<s1[j];
}
作者:
加非猫
时间:
2009-11-3 03:58
只有st7个元素
s1也只有6个空间
for(j=0;j<8;j++)
越界
另外你的static char ch;
什么用??
我怎么没看明白
作者:
o.筎茈菰箪き
时间:
2009-11-3 03:58
char operator[](int)
你的下标操作是按值返回,
这个返回的值不能作为左值使用,不能给它赋值。
作者:
√我爱你
时间:
2009-11-3 03:58
他大概只想显示
woodhead心好细呀
作者:
清茶淡水
时间:
2009-11-3 03:58
高手果然厉害,小弟的确是只想显示一下看看结果,既然这个返回值不可做为左值,帮忙改下吧,小弟不盛感激呀
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2