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

单例模式

时间:2016-09-12 14:03:47      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:

package newdemo.jeno.designdemo.utlis;

/**
* Created by songjiabin1 on 2016/9/12.
*/
public class Login {
private static Login instance = null;

public static Login getInstance() {
if (instance == null) {
synchronized (Login.class) {
if (instance == null) {
instance = new Login();
}
}
}
return instance;
}

}

单例模式

标签:

原文地址:http://www.cnblogs.com/jeno-song/p/5864297.html

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