单例模式确保某个类只有一个实例,而且自行实例化并向整个系统提供这个实例
![image.png](http://upload-images.jianshu.io/upload_images/9006799-8cbaae23e592eeaa.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
特点 : 单例类只能有一个实例。
单例类必须自己创建自己的唯一实例。
单例类必须给所有其他对象提供这一实例。
![image.png](http://upload-images.jianshu.io/upload_images/9006799-eff7c6f982e7cd87.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)