设计模式-单例模式(Singleton Pattern)
单例模式是一种经常被使用到的模式, 像是在spring等主流框架中,我们会经常看到它的声影,那么什么是单例模式定义: Ensure a class has onle one instance, and provide a global point of access to it (确保某一个类只能生成一个实例,而且自行实例化并想整个系统提供这个实例)样例:
饿汉式package com.mjlf.
原创
2017-12-03 16:58:48 ·
176 阅读 ·
0 评论