Chinaunix首页 | 论坛 | 博客
  • 博客访问: 169007
  • 博文数量: 60
  • 博客积分: 15
  • 博客等级: 民兵
  • 技术积分: 638
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-26 10:59
个人简介

喜欢coding,因为那是一件伟大的事情,是将无生命的IC赋予灵魂的过程,让我拥有了和上帝一样的成就感。(w1c2g3@163.com)

文章分类

全部博文(60)

文章存档

2017年(7)

2016年(41)

2015年(1)

2014年(4)

2013年(7)

我的朋友

发布时间:2016-10-30 22:48:36

命令模式 将“请求”封装成对象,以便使用不同的请求、队列或者日志来参数化其他对象。命令模式也支持可撤销的操作。#include <iostream>#include <string>using namespace std;struct Command {    .........【阅读全文】

阅读(644) | 评论(0) | 转发(0)

发布时间:2016-10-30 22:47:18

单件模式 确保一个类只有一个实例,并提供一个全局访问点。#include <iostream>#include <string>#include <pthread.h>using namespace std;class Singleton {public:    static.........【阅读全文】

阅读(607) | 评论(0) | 转发(0)

发布时间:2016-10-30 22:46:08

#include <iostream>#include <string>using namespace std;struct AbstractProduct {    virtual void operation() = 0;};struct ProductA : public AbstractProduct {.........【阅读全文】

阅读(619) | 评论(0) | 转发(0)

发布时间:2016-10-30 22:45:14

抽象工厂模式......【阅读全文】

阅读(613) | 评论(0) | 转发(0)

发布时间:2016-10-30 22:43:08

工厂方法模式 定义了一个创建对象的接口,但由子类决定要实例化的类是哪一个。工厂方法让类把实例化推迟到子类。#include <iostream>#include <string>using namespace std;struct AbstractProduct {   &n.........【阅读全文】

阅读(601) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册