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

使用静态代码块来实现单例模式

时间:2017-11-12 18:35:25      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:pack   mini   使用   run   thread   str   ash   代码块   静态   

package com.wz.thread.staticlump;
/**
 * 使用静态代码块来实现单例模式
 * @author Administrator
 *
 */
public class MyObject {
    
    private static MyObject instance = null;
    
    private MyObject() {}
    static {
        instance = new MyObject();
    }
    public static MyObject getInstance() {
        return instance;
    }

}

 

package com.wz.thread.staticlump;

public class MyThread extends Thread {
    
    @Override
    public void run() {
        super.run();
        for (int i = 0; i < 5; i++) {
            System.out.println(MyObject.getInstance().hashCode());
        }
        
    }

}

 

package com.wz.thread.staticlump;
/**
 * 输出的hascode值相同,说明是同一个对象
 * @author Administrator
 *
 */
public class Run {

    public static void main(String[] args) {
        MyThread t1 = new MyThread();
        MyThread t2 = new MyThread();
        MyThread t3 = new MyThread();
        t1.start();
        t2.start();
        t3.start();
    }
}

使用静态代码块来实现单例模式

标签:pack   mini   使用   run   thread   str   ash   代码块   静态   

原文地址:http://www.cnblogs.com/wadmwz/p/7822340.html

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