免费注册 查看新帖 |

Chinaunix

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

[C++] 各位大侠,请帮我看看我的代码错在哪儿? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-08-08 14:13 |只看该作者 |倒序浏览
#include<iostream>
using namespace std;
#include "string.h"
class book
{
public:
        book();
        book(char*,char*,char*,float);
        const string& Gettitle()const{return title;}
        const string& GetAuthor()const{return author;}
        const string& GetNumber()const{return number;}
        float GetPrice()const{return price;}
        void Settitle(const string&stitle){title=stitle;}
        void SetNumber(const string&snumber){number=snumber;}
        void SetAuthor(const string&sauthor){author=sauthor;}
        void SetPrice(float sprice){price=sprice;}
        void SetTotal(const string&T,const string&N,const string&A,float P )
        {
                title=T;
                number=N;
                author=A;
                price=P;
        }
private:
        string title;
        string author;
        string number;
        float price;
};
book::book():title(""),author(""),number(""),price(0)
{


}
book::book(char*title,char*Author,char*Number,float Price):title(title),author(Author),number(Number),price(Price)
{


}
int main()
{
        book love("love","Jacky","001","34.1");
        cout<<"书名:"<<love.Gettitle()<<"作者:"<<love.GetAuthor()<<"编号:"<<love.GetNumber()<<"价格:"<<love.GetPrice()<<endl;

return 0;
}


以下是报错信息:
--------------------Configuration: dmcy - Win32 Debug--------------------
Compiling...
dmcy.cpp
C:\test\dmcy\dmcy.cpp(42) : error C2664: '__thiscall book::book(char *,char *,char *,float)' : cannot convert parameter 4 from 'char [5]' to 'float'
        There is no context in which this conversion is possible
C:\test\dmcy\dmcy.cpp(43) : error C2679: binary '<<' : no operator defined which takes a right-hand operand of type 'const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >' (or there is no acceptable conversion
)
执行 cl.exe 时出错.

dmcy.exe - 1 error(s), 0 warning(s)

论坛徽章:
324
射手座
日期:2013-08-23 12:04:38射手座
日期:2013-08-23 16:18:12未羊
日期:2013-08-30 14:33:15水瓶座
日期:2013-09-02 16:44:31摩羯座
日期:2013-09-25 09:33:52双子座
日期:2013-09-26 12:21:10金牛座
日期:2013-10-14 09:08:49申猴
日期:2013-10-16 13:09:43子鼠
日期:2013-10-17 23:23:19射手座
日期:2013-10-18 13:00:27金牛座
日期:2013-10-18 15:47:57午马
日期:2013-10-18 21:43:38
2 [报告]
发表于 2013-08-08 14:21 |只看该作者
编译错误不是说了么,cannot convert parameter 4 from 'char [5]' to 'float'
改成
book love("love","Jacky","001",34.1);

论坛徽章:
0
3 [报告]
发表于 2013-08-08 14:54 |只看该作者
已经发现两个错误地方:
1:book love("love","Jacky","001","34.1");----> book love("love","Jacky","001",34.1f);
2:C:\test\dmcy\dmcy.cpp(43) : error C2679: binary '<<' : no operator defined which takes a right-hand operand of type 'const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >' (or there is no acceptable conversion
)--------------------------------------------------------->编写一个string.h头文件.即可

论坛徽章:
0
4 [报告]
发表于 2013-08-15 15:26 |只看该作者
回复 2# hellioncu
多谢


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

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP