时间:2021-05-20
这篇实例中有四个类,分别为
CacheItem 缓存实体类
CachePool 缓存池
Student 学生实体类
MainTest 主测试类
其中,缓存实体类CacheItem 中存放管理学生实体对象Student ,缓存实体类CacheItem 存放在缓存池CachePool 中,MainTest 主要负责整体的测试工作。
缓存实体类
package com.paic.zhangqi.cache; import java.util.Date; /** * 缓存实体 * @author ZHANGQI947 */ public class CacheItem { // 创建缓存时间 private Date createTime = new Date(); // 缓存期满时间 private long expireTime = 1; // 缓存实体 private Object entity; public CacheItem(Object obj, long expires) { this.entity = obj; this.expireTime = expires; } // 判断缓存是否超时 public boolean isExpired() { return (expireTime != -1 && new Date().getTime() - createTime.getTime() > expireTime); } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public Object getEntity() { return entity; } public void setEntity(Object entity) { this.entity = entity; } public long getExpireTime() { return expireTime; } public void setExpireTime(long expireTime) { this.expireTime = expireTime; } }缓存池CachePool
学生类Student
package com.paic.zhangqi.cache; /** * 学生类 * @author Administrator */ public class Student { private String name; private String id; private int age; private int sal; public Student() { } public Student(String name, String id, int age, int sal) { this.name = name; this.id = id; this.age = age; this.sal = sal; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getId() { return id; } public void setId(String id) { this.id = id; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public int getSal() { return sal; } public void setSal(int sal) { this.sal = sal; } }主测试类MainTest
package com.paic.zhangqi.cache; /** * 主测试类 * @author ZHANGQI947 */ public class MainTest { /** * @param args * @throws InterruptedException */ public static void main(String[] args) throws InterruptedException { // 获取缓存池 CachePool cachePool = CachePool.getInstance(); Student stu1 = new Student("l1", "stu001", 25, 40); Student stu2 = new Student("l2", "stu002", 25, 40); Student stu3 = new Student("l3", "stu003", 25, 40); Student stu4 = new Student("l4", "stu004", 25, 40); cachePool.putCacheItem("001", stu1, 122222); cachePool.putCacheItem("002", stu2, 10); cachePool.putCacheItem("003", stu3, 360002); cachePool.putCacheItem("004", stu4, 1222222); // 设置线程休眠,其中002对象会超时 Thread.sleep(200); Student stu001 = (Student) cachePool.getCacheItem("001"); if (null != stu001) { System.out.println(stu001.getName()); } // 由于超时,这里取出的002对象为null Student stu002 = (Student) cachePool.getCacheItem("002"); if (null != stu002) { System.out.println(stu002.getName()); } // 获取打印缓存池中对象数量 int cacheSize = cachePool.getSize(); System.out.println(cacheSize); // 删除对象002 cachePool.removeCacheItem("002"); // 打印缓存池数量 cacheSize = cachePool.getSize(); System.out.println(cacheSize); } }测试结果
l1
4
3
希望本篇文章内容对您有所帮助
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
java中设计模式(多例)的实例详解多例:单例设计模式的变形,可以看成是一个缓存池的单例,而缓存池里面可以存多个数据实例代码://单例+缓存---没有控制池大小
详解Java线程池和Executor原理的分析线程池作用与基本知识在开始之前,我们先来讨论下“线程池”这个概念。“线程池”,顾名思义就是一个线程缓存。它是一个或
Java常量池的实例详解Java的常量池中包含了类、接口、方法、字符串等一系列常量值。常量池在编译期间就已经确定,并保存在*.class文件中一、对于相同的常量
这篇文章主要介绍了Java包装类的缓存机制原理实例详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下java
java实现单链表逆转详解实例代码:classNode{Nodenext;Stringname;publicNode(Stringname){this.name