码迷,mamicode.com
首页 > 其他好文 > 详细

ChainOfResponsibility

时间:2014-12-16 18:29:52      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   io   color   os   sp   on   div   

#include <iostream>

using namespace std;



class Chain
{
public:
    bool Handle() { return false; }
};

class Level1 : public Chain
{
public:
    bool Handle()
    {
        cout<<"Level1::true"<<endl;
        return true;

    }
};

class Level2 : public Level1
{
public:
    bool Handle()
    {
        cout<<"Level2::Handle"<<endl;
        return Level1::Handle();
    }
};

class Level3 : public Level2
{
public:
    bool Handle()
    {
        cout<<"Level3::Handle"<<endl;
        return Level2::Handle();
    }
};



int main(int argc, char *argv[])
{
    Level3 level3;
    level3.Handle();


    return 0;
}

 

ChainOfResponsibility

标签:style   blog   ar   io   color   os   sp   on   div   

原文地址:http://www.cnblogs.com/stanley198610281217/p/4167448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!