欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java使用hashMap缓存保存数据的方法

程序员文章站 2024-03-13 13:54:27
本文实例讲述了java使用hashmap缓存保存数据的方法。分享给大家供大家参考,具体如下: private static final hashmap

本文实例讲述了java使用hashmap缓存保存数据的方法。分享给大家供大家参考,具体如下:

private static final hashmap<long, xxx> scache = new hashmap<long, xxx>();
private static int sid = -1;
public static void initalbumartcache() {
  try {
    //。。。
    if (id != sid) {
      clearcache();
      sid = id; 
    }
  } catch (remoteexception e) {
    e.printstacktrace();
  }
}
public static void clearcache() {
  synchronized(scache) {
    scache.clear();
  }
}
public static xxx getcachedxxx(long index, bitmapdrawable defaultbitmap) {
  xxx d = null;
  synchronized(scache) {
    d = scache.get(index);
  }
  if (d == null) {
    //。。。
    synchronized(sartcache) {
      // the cache may have changed since we checked
      xxx value = scache.get(index);
      if (value == null) {
        scache.put(index, d);
      } else {
        d = value;
      }
    }
  }
  return d;
}

更多关于java算法相关内容感兴趣的读者可查看本站专题:《java数据结构与算法教程》、《java操作dom节点技巧总结》、《java文件与目录操作技巧汇总》和《java缓存操作技巧汇总

希望本文所述对大家java程序设计有所帮助。