设计模式:单例模式(饿汉)

/**
 * 单例模式。
 * @author Bright Lee
 */
public class HungrySingleton {
	
	private static final HungrySingleton instance = 
			new HungrySingleton();
	
	private HungrySingleton() {
		System.out.println("构造方法被调用了,当前时间戳是:" + 
				System.currentTimeMillis());
	}
	
	public static HungrySingleton getInstance() {
		return instance;
	}

	public static void main(String[] args) {
		// 并发调用100遍,构造方法只会被调用一次:
		for (int i = 0; i < 100; i++) {
			new Thread() {
				public void run() {
					HungrySingleton.getInstance();
				}
			}.start();
		}
	}

}

猜你喜欢

转载自blog.csdn.net/look4liming/article/details/84634108