java – 只为类创建一个对象并重用相同的对象

前端之家收集整理的这篇文章主要介绍了java – 只为类创建一个对象并重用相同的对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想只创建一个类的一个对象,并一遍又一遍地重用同一个对象.
有没有有效的方法来做到这一点.

我怎样才能做到这一点?

解决方法

public final class MySingleton {
    private static volatile MySingleton instance;

    private MySingleton() {
        // TODO: Initialize
        // ...
    }

    /**
      * Get the only instance of this class.
      *
      * @return the single instance.
      */
    public static MySingleton getInstance() {
        if (instance == null) {
            synchronized (MySingleton.class) {
                if (instance == null) {
                    instance = new MySingleton();
                }
            }
        }
        return instance;
    }
}@H_301_10@
原文链接:https://www.f2er.com/java/129579.html

猜你在找的Java相关文章