随笔分类 -  设计模式

单例模式
摘要:1. 什么是单例模式 单例模式(Singleton Pattern,也称为单件模式),使用最广泛的设计模式之一。其意图是保证一个类仅有一个实例,并提供一个访问它的全局访问点,该实例被所有程序模块共享。 定义一个单例类: 私有化它的构造函数,以防止外界创建单例类的对象; 使用类的私有静态指针变量指向类 阅读全文

posted @ 2020-08-23 15:32 lialin 编辑

【转】策略模式(Strategy pattern)
摘要:定义 Define a family of algorithms, encapsulate each one, and make them interchangeable. [The] Strategy [pattern] lets the algorithm vary independently 阅读全文

posted @ 2020-08-22 20:08 lialin 编辑

导航