| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 338 人关注过本帖
标题:大家帮我看一下,是什么错误,找半天了都找不到
只看楼主 加入收藏
x6988312
Rank: 1
等 级:新手上路
帖 子:46
专家分:5
注 册:2012-3-26
结帖率:100%
收藏
已结贴  问题点数:16 回复次数:3 
大家帮我看一下,是什么错误,找半天了都找不到
# include<iostream.h>
# include<string.h>
class strings
{
public:
    strings(string a);
private:
    char contents[50];
    int length;
};
strings::strings(string a)
{
    int l;
    char s[6]="hallo";
    l=length(s);
    cout<<"The original string and length"<<endl;
    cout<<s<<"  "<<l<<endl;
    contents=s+a;
    length=strlen(contents);
    cout<<" now string and length"<<endl;
    cout<<contents<<"  "<<length<<endl;
}
void main()
{
    strings sd;
    string a;
    cout<<"please input a string"<<endl;
    cin>>a;
    sd(a);
}
收到的鲜花
  • 寒风中的细雨2012-11-27 20:33 送鲜花  1朵   附言:编译下就知道什么错了
搜索更多相关主题的帖子: original void contents private include 
2012-11-27 19:49
mmmmmmmmmmmm
Rank: 10Rank: 10Rank: 10
等 级:青峰侠
威 望:8
帖 子:388
专家分:1809
注 册:2012-11-2
收藏
得分:16 
程序代码:
#include<iostream>
#include<string>
using namespace std;
class strings
{
public:
    strings(string a);
private:
    char contents[50];
    int length;
};
strings::strings(string a)
{
    int l;
    char s[6]="hallo";
    l=strlen(s);       //方法应使用strlen()
    cout<<"The original string and length"<<endl;
    cout<<s<<"  "<<l<<endl;
    strcpy(contents,s);//字符串才可以直接用+的
    strcat(contents,a.c_str());
    length=strlen(contents);
    cout<<" now string and length"<<endl;
    cout<<contents<<"  "<<length<<endl;
}
void main()
{
   
    string a;
    cout<<"please input a string"<<endl;
    cin>>a;
     strings sd(a); //构造函数要有参数的
}

我们的目标只有一个:消灭0回复!
while(1)
++money;
2012-11-27 23:04
w527705090
Rank: 10Rank: 10Rank: 10
等 级:贵宾
威 望:11
帖 子:441
专家分:1882
注 册:2011-6-28
收藏
得分:0 
楼上正解

有心者,千方百计;无心者,千难万难。
2012-11-27 23:41
x6988312
Rank: 1
等 级:新手上路
帖 子:46
专家分:5
注 册:2012-3-26
收藏
得分:0 
回复 2楼 mmmmmmmmmmmm
别的话不多说,我只想说,你是好人.....
2012-11-28 11:19
快速回复:大家帮我看一下,是什么错误,找半天了都找不到
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.067420 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved