gpt4 book ai didi

java - 为一个类只创建一个对象并重复使用同一个对象

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:10:24 29 4
gpt4 key购买 nike

我只想创建一个类的一个对象,并一遍又一遍地重复使用同一个对象。有什么有效的方法可以做到这一点。

我该怎么做?

最佳答案

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;
}
}

关于java - 为一个类只创建一个对象并重复使用同一个对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14135459/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com