使用CollectionUtils的Predicate来过滤一个集合list中某种class的子集合
CollectionUtils.filter(this.list, new Predicate(){
public boolean evaluate(Object object) {
if(object instanceof TSysDepartment){//TSysDepartment为要过滤的对象
return false;
}
return true;
}
});