Java 線程不安全懶漢單列模式
提問(wèn)人:劉旭39發(fā)布時(shí)間:2020-11-26
//線程不安全懶漢單列模式
public interface Singleton{
private static Singleton singleton ;
private Singleton() {}
public static Singleton getInstance() {
if(singleton==null) {
singleton=new Singleton();
}
return
}
}
繼續(xù)查找其他問(wèn)題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評(píng)論>>