鱼C论坛

 找回密码
 立即注册
查看: 2660|回复: 4

这代码看不出是哪错了,编译不了

[复制链接]
发表于 2012-11-23 22:10:15 | 显示全部楼层 |阅读模式
1鱼币
#include<iostream>
#include<string>
using namespace std;
class  People
{
     public:
   People(std::string  thename);
  protected:
   std:: string name;
};
class Man:public People
{

};
People::People(std::string thename)
{
name=thename;
}

int main()
{
    Man man("A");
   return 0;
}

请问是哪里错了

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
发表于 2012-11-23 23:25:24 | 显示全部楼层
本帖最后由 螃蟹009 于 2012-11-23 23:26 编辑
#include<iostream>
#include<string>
using namespace std;
class  People
{
        public:
        
           People(std::string thename);
           
          protected:
          
   std::string name;
};
class Man:public People
{
    public:
    Man(std::string thename);
};
People::People(std::string thename)
{
    name=thename;
}
Man::Man(std::string thename):People(thename)
{

}

int main()
{
    Man man("A");
    man.eat();
    
   return 0;
}
你在主函数里的man中设置了参数所以要在子类中添加上参数!你可以在People中设置个输出的函数来检测!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2012-11-24 00:05:17 | 显示全部楼层
明白了,谢谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

头像被屏蔽
发表于 2012-11-24 12:07:53 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-8-27 15:58:27 | 显示全部楼层
{:1_1:}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 09:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表