码迷,mamicode.com
首页 > 其他好文 > 详细

设计模式之单例模式

时间:2020-05-11 00:51:18      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:nbsp   color   on()   span   ret   turn   text   实现   center   

单例模式

一、什么是单例模式?

创建一个类

二、实现方式

2.1 饿汉式

1 public class Singleton {  
2     private static Singleton INSTANCE = new Singleton();
3 
4     private Singleton (){}
5 
6     public static Singleton getInstance() {
7         return INSTANCE;
8     }
9 }

 

设计模式之单例模式

标签:nbsp   color   on()   span   ret   turn   text   实现   center   

原文地址:https://www.cnblogs.com/yeyangshu/p/12866374.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!