Java单例模式
java单例模式 编写
public static ImageLoader getInstance() {
if(instance == null) {
Class var0 = ImageLoader.class;
synchronized(ImageLoader.class) {
if(instance == null) {
instance = new ImageLoader();
}
}
}
return instance;
}