我来我网
https://5come5.cn
 
您尚未 登录  注册 | 菠菜 | 软件站 | 音乐站 | 邮箱1 | 邮箱2 | 风格选择 | 更多 » 
 

本页主题: 【求助】看看什么地方错了,运行的时候要调试!!! 显示签名 | 打印 | 加为IE收藏 | 收藏主题 | 上一主题 | 下一主题

fonly



性别: 帅哥 状态: 该用户目前不在线
头衔: 要学习去了
等级: 人见人爱
家族: ⊙JAY菊爱园⊙
发贴: 3288
威望: 0
浮云: 1105
在线等级:
注册时间: 2006-09-15
最后登陆: 2009-05-12

5come5帮你背单词 [ circle /'sə:kl/ n. 圆,圆周,集团,圈子;v. 环绕,盘旋,划圈 ]


【求助】看看什么地方错了,运行的时候要调试!!!

#include<iostream.h>
class string
{
  int length;
  char* contents;
public:
   int getlength()
   {
      return length;
   }
   char* getcontents()
   {
      return contents;
   }
   void setcontents(char* ct)
   {
    int len=0;
    contents=ct;
    while(*ct++!='\0')
        len++;
    length=len;
   }
       char* conect(string str1)
   {
       for(int i=0;i<str1.length;i++ )
           contents[length++]=str1.contents;
       return contents;

   }
};
void main()
{
string string1,string2;

string1.setcontents("hello,we!");
string2.setcontents("wohehao");
cout<<"string1="<<string1.getcontents()<<endl;
cout<<"string2="<<string2.getcontents()<<endl;
cout<<"string1+string2="<<string1.conect(string2)<<endl;


}
顶端 Posted: 2007-06-10 19:34 | [楼 主]
yinx



性别: 帅哥 状态: 该用户目前不在线
等级: 人见人爱
家族: 丢丢
发贴: 2333
威望: 0
浮云: 1260
在线等级:
注册时间: 2006-09-15
最后登陆: 2009-05-11

5come5帮你背单词 [ and /ænd, ənd/ conj. 和,与,加,那么,则 ]


Copy code
contents[length++]=str1.contents[i];




这里连接字符串之前要先给contents申请合适大小的空间.
可以先申请一个空间,把两个字符串都写进去,再把原来的contents delete掉,把后来的那个空间赋给contents.


还有,你忘记了新的字符串应该以'\0'结尾.
顶端 Posted: 2007-06-11 11:03 | [1 楼]
我来我网·5come5 Forum » 程序员之家

Total 0.007538(s) query 5, Time now is:11-23 15:25, Gzip enabled
Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号