标签:
单例模式两种常用类型:饿汉模式和懒汉模式。
饿汉模式:在加载类的时候就创建了对象实例。
具体代码如下:
public class Singleton {
// 1.将构造方法私有化,不允许外部直接创建对象
private Singleton() {
}
// 2.创建类的唯一实例,使用private static修饰
private static Singleton instance = new Singleton();
// 3.提供一个用于获取实例的方法,使用public static修饰
public static Singleton getInstance() {
return instance;
}
}
懒汉模式:等到用户调用获取实例方法的时候才创建实例。
具体代码如下:
public class Singleton2 {
// 1.将构造方法私有化,不允许外部直接创建对象
private Singleton2() {
}
// 2.声明类的唯一实例,使用private static修饰
private static Singleton2 instance;
// 3.提供一个用于获取实例的方法,使用public static修饰
public static Singleton2 getInstance() {
if(instance == null) {
instance = new Singleton2();
}
return instance;
}
}
两种类型主要区别:
1.饿汉模式的特点是加载类时比较慢,但运行时获取对象的速度比较快。
懒汉模式的特点是加载类时比较快,但运行时获取对象的速度比较慢。
2.饿汉模式是线程安全的。
懒汉模式是线程不安全的。
标签:
原文地址:http://www.cnblogs.com/houxi/p/4564605.html