前端之家收集整理的这篇文章主要介绍了
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