c++编译问题,本人刚学上机操作,编译下面的代码,提示两处错误,可怎么也找不出来,请高手帮忙指点,谢谢

#include<iostream.h>classAnimal{public:Animal(){cout<<"animalconstruct"<<endl;voideat... #include <iostream.h>
class Animal
{
public:
Animal()
{
cout<<"animal construct"<<endl;
void eat()
{
cout<<"animal eat"<<endl;
}
void sleep()
{
cout<<"animal sleep"<<endl;
}
void breathe()
{
cout<<"animal breathe"<<endl;
}
};

class Fish : public Animal
{
public:
Fish()
{
cout<<"fish construct"<<endl;
}
};

void main()
{
// Animal am;
// am.eat();

// am.sleep();
Fish fh;
// fh.sleep();
}

/* 提示语言见下
Compiling...
Main.cpp
D:\C++\1\Main\Main.cpp(23) : error C2504: 'Animal' : base class undefined
D:\C++\1\Main\Main.cpp(40) : fatal error C1004: unexpected end of file found
Error executing cl.exe.

Main.exe - 2 error(s), 0 warning(s)
*/
展开
 我来答
zsx10110
2012-04-29 · TA获得超过8872个赞
知道大有可为答主
回答量:2369
采纳率:66%
帮助的人:3105万
展开全部
class Animal
{
public:
Animal()
{
cout<<"animal construct"<<endl;
}//这里少了个花括号 晕
void eat()
{
cout<<"animal eat"<<endl;
}
void sleep()
{
cout<<"animal sleep"<<endl;
}
void breathe()
{
cout<<"animal breathe"<<endl;
}
};
歌梦复兴
2012-04-29 · TA获得超过211个赞
知道小有建树答主
回答量:177
采纳率:0%
帮助的人:128万
展开全部
Animal的构造函数Animal()
{
cout<<"animal construct"<<endl;
这里少了一个大括号
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友f82e851e52
2012-04-29 · TA获得超过983个赞
知道小有建树答主
回答量:807
采纳率:50%
帮助的人:757万
展开全部
类Animal定义的时候下面少一个大括号。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
5843148
2012-04-29 · TA获得超过188个赞
知道小有建树答主
回答量:633
采纳率:0%
帮助的人:213万
展开全部
楼上正解
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
mdriftking
2012-04-29
知道答主
回答量:10
采纳率:0%
帮助的人:1.6万
展开全部
少了大括号啦,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式