我从配置加载器类访问静态字段“缓存”的方式有问题吗?仅供参考,CacheEngine
是一个为 memcached 实现缓存客户端的接口。
public class Test {
...
getCache(){
...
try{
cacheData = ConfigLoader.cache.get(key); // Accessing the static 'cache' memeber returns Null Pointer Exception
...
}
}
}
//ConfigLoader Class
public class ConfigLoader{
public static CacheEngine cache;
...
}