首页 > 其他 > 详细

Open closed principle

时间:2018-10-19 01:50:23      阅读:184      评论:0      收藏:0      [点我收藏+]
#include <iostream>

using namespace std;

class Book
{
public:
    string getContents()
    {
        return "Long time ago,There is a temple in the mountain";
    }
};

class Paper
{
public:
    string getContents()
    {
        return "I am handsome";
    }
};

class Mother
{
public:
    void tellstory(Book* b)
    {
        cout << b->getContents() << endl;
    }
    void tellstory(Paper* p)
    {
        cout << p->getContents() << endl;
    }
};

int main(int argc, char *argv[])
{
    Book b;
    Mother m;
    Paper p;
    m.tellstory(&b);
    m.tellstory(&p);
    return 0;
}


技术分享图片

 

 

#include <iostream>

using namespace std;
class iReader
{
public:
    virtual string getContents() = 0;//only provide a interface
};
class Book : public iReader
{
public:
    string getContents()
    {
        return "Long time ago,There is a temple in the mountain";
    }
};

class Paper : public iReader
{
public:
    string getContents()
    {
        return "I am handsome";
    }
};

class Mother
{
public:
    void tellstory(iReader * r)
    {
        cout << r->getContents() << endl;
    }
};

int main(int argc, char *argv[])
{
    Book b;
    Mother m;
    Paper p;
    m.tellstory(&b);
    m.tellstory(&p);
    return 0;
}
技术分享图片

 

Open closed principle

原文:https://www.cnblogs.com/aelite/p/9813888.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!