C++设计模式之观察者模式

时间:2014-03-28 12:37:50   收藏:0   阅读:348

bubuko.com,布布扣

1 观察者:

bubuko.com,布布扣
#include "Watcher.h"


Watcher::Watcher(string name)
{
    this->name=name;
}
Watcher::Watcher(const Watcher &watcher)//必须实现拷贝构造函数,才能放到容器里
{
    this->name=watcher.name;
}

Watcher::~Watcher(void)
{
}
string Watcher::getname()
{

    return name;
}
void Watcher::update()
{
    std::cout<<name+" is updated"<<endl;
}
bubuko.com,布布扣

2 主题

bubuko.com,布布扣
#include "Watched.h"
Watched::Watched(void)
{
}
Watched::~Watched(void)
{
}
void Watched::AddWatcher(Watcher *newone)
{
    allwatchers.push_back(*newone);

}
void Watched::RemoveWatcher(Watcher *oldone)
{
    for(int i=0;i<allwatchers.size();i++)
    {
        if(allwatchers[i].getname()==oldone->getname()) 
        {allwatchers.erase( allwatchers.begin()+ i ); break;}
    }
    
}
void Watched::RemoveAllWatcher()
{
    allwatchers.clear();
}
void Watched::NotifyAllWatcher()
{
    for(int i=0;i<allwatchers.size();i++)
    {
        allwatchers[i].update();
        
    }
}
bubuko.com,布布扣

3 main函数

bubuko.com,布布扣
// Observer.cpp : 定义控制台应用程序的入口点。
//
#include "vld.h"
#include "stdafx.h"
#include "Watched.h"
#include "Watcher.h"

int _tmain(int argc, _TCHAR* argv[])
{
    Watcher* Watcher1=new Watcher("Watcher1");
    Watcher* Watcher2=new Watcher("Watcher2");
    Watcher* Watcher3=new Watcher("Watcher3");
    Watched* watched=new Watched();
    watched->AddWatcher(Watcher1);
    watched->AddWatcher(Watcher2);
    watched->AddWatcher(Watcher3);
    watched->NotifyAllWatcher();
    getchar();
    delete watched;
    delete Watcher1;
    delete Watcher2;
    delete Watcher3;
    return 0;
}
bubuko.com,布布扣

4 运行效果

bubuko.com,布布扣

C++设计模式之观察者模式,布布扣,bubuko.com

原文:http://www.cnblogs.com/shencheng5721/p/3629277.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!