标题:illegal use of type 'void'怎么改正
只看楼主
jj1543871887
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2014-5-10
结帖率:0
已结贴  问题点数:20 回复次数:2 
illegal use of type 'void'怎么改正
#include<iostream>
using namespace std;

class Base1{
public:
    virtual void display() const=0;
    virtual void food() const=0;
};
class Base2:public Base1{
public:
    void display() const;
    void food() const;
};

void Base2::display() const{
    cout<<"第一层的是动物"<<endl;
}
void Base2:food() const{
}

class Base3:public Base2{
public:
    void display() const;
    void food() const;
};

void Base3::display() const{
    cout<<"第二层的有动物下的猴子,猫科和鸟"<<endl;
}
void Base3::food() const{
    cout<<"猴子一般都是吃水果的"<<endl;
}

class Base4:public Base3{
public:
    void display() const;
    void food()  const;
};
void Base4::display() const{
    cout<<"第三层中有猫科之下的狮子和老虎,鸟之下的麻雀"<<endl;
}
void Base4::food() const{
    cout<<"狮子和老虎都是吃肉的,而麻雀是吃素的"<<endl;
}

void fun(Base1 *ptr){
    ptr->display();
}
void fun1(Base1 *p){
    p->food();
}

int main(){
    Base2 base2;
    Base3 base3;
    Base4 base4;
    fun(&base2);
    fun1(&base2);
    fun(&base3);
    fun1(&base3);
    fun(&base4);
    fun1(&base4);

    return 0;
}
搜索更多相关主题的帖子: display include public 动物 
2014-05-15 11:00
wp231957
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:神界
等 级:版主
威 望:422
帖 子:13681
专家分:53296
注 册:2012-10-18
得分:20 
这里少个冒号吧  应该是双冒号的

void Base2::food() const{

}

DO IT YOURSELF !
2014-05-15 11:03
jj1543871887
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2014-5-10
得分:0 
一语惊醒梦中人啊,是我疏忽了,谢了
2014-05-15 20:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-431561-1-1.html




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

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