:1.79KB : :1 :2022-10-03 15:12:15
c++ 设计模式 观察者模式实现如果开发者对于本文件有需要的可以参考。
int main()
{
Csub* psub = new sub(3); //创建被观察者
Cobserver* pco = new Cfk(psub); //创建观察者
psub->attach(pco);//加入观察队列
//事件发生
psub->notify();//通知
//psub->detach(pco); //这里有问题,所以先去除了
delete pco;
delete psub;
return 0;
}
10-19C++许可授权相关代码
09-09C++建立重载函数sroot
09-07C++的string的实现源码分析
07-30C++14新特性所有知识点集合
11-07C++企业微信双开小工具最新版及思路