getInstance时空指针
if (mImageLoader == null) {
synchronized (mImageLoader) {
if (mImageLoader == null) {
mImageLoader = new ImageLoader(threadCount, type);
}
}
}使用同步时,报NPE,老师怎么解决?貌似,当对象为空时,不能用synchronized
if (mImageLoader == null) {
synchronized (mImageLoader) {
if (mImageLoader == null) {
mImageLoader = new ImageLoader(threadCount, type);
}
}
}使用同步时,报NPE,老师怎么解决?貌似,当对象为空时,不能用synchronized
2016-12-08
举报