contains 方法用来判断指定的实体类的对象是否在缓存中,它的返回值为 boolean 类型,如果返回值为 true,则说明在缓存中;如果为 false,则说明不在缓存中。
语法:
参数说明:
返回值:表示判断结果的 true 或 false,为 true 表示在缓存中,为 false 表示不在缓存中。
应用 contains 方法判断指定的实体类对象 uf 是否在缓存中,关键代码如下:
if(session.contains(uf)){ //判断示例对象uf是否在缓存中
System.out.println("uf在缓存中");
}else{
System.out.println("uf不在缓存中");
}