| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1578 人关注过本帖
标题:C++ 多态方面问题
取消只看楼主 加入收藏
FrankloveCyy
Rank: 1
等 级:新手上路
帖 子:33
专家分:0
注 册:2019-5-5
结帖率:11.11%
收藏
已结贴  问题点数:10 回复次数:0 
C++ 多态方面问题
#include<iostream>
using namespace std;

class Fish
{
public:
    virtual Fish* Clone()= 0;
    virtual void Swim() = 0;
    virtual ~Fish();
};

class Tuna:public Fish
{
public:
    Fish* Clone() override
    {
        return new Tuna(*this);
    }
   
    void Swim()override final
    {
        cout<<"Tuna swims fast in the sea"<<endl;
    }
};

class BluefinTuna final:public Tuna
{
public:
    Fish* Clone() override
    {
        return new BluefinTuna(*this);
    }
   
    //cannot override Tuna::Swim as it is"final" in Tuna
};

class Carp final:public Fish
{
    Fish* Clone() override
    {
        return new Carp(*this);
    }
    void Swim() override final
    {
        cout<<"Carp swims slow in the lake"<<endl;
    }
};

int main()
{
    const int ARRAY_SIZE = 4;
   
    Fish*myFishes[ARRAY_SIZE] = {NULL};
    myFishes[0] = new Tuna();
    myFishes[1] = new Carp();
    myFishes[2] = new BluefinTuna();
    myFishes[3] = new Carp();
   
    Fish*myNewFishes[ARRAY_SIZE];
    for(int index = 0;index<ARRAY_SIZE;++index)
       myNewFishes[index] = myFishes[index]->Clone();
      
       //invoke a virtual method to check
       for(int index = 0;index < ARRAY_SIZE;++index)
       myNewFishes[index]->Swim();
      
       //memory cleanup
       for(int index = 0; index<ARRAY_SIZE;++index)
       {
           delete myFishes[index];
           delete myNewFishes[index];
       }
      
       return 0;
}
图片附件: 游客没有浏览图片的权限,请 登录注册
这个是编译器出现的报错,请教一下大神,这是编译器告诉我,目前编译器的版本不支持C++2011标准码?如果是,怎么解决啊?是去官网更新,还是自己设置一下?上次也是百度查了一下,设置,然后编译器直接就不编译了,虽然没有出现报错,我用的是DEV-C++5.11这个编译器。谢谢各位大神!!!
搜索更多相关主题的帖子: public Clone override new index 
2019-07-19 13:46
快速回复:C++ 多态方面问题
数据加载中...
 
   



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

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