/**
* 判断集合是否非空
* @param collection
* @return
*/
public static boolean isEmptyCollection(Collection<?> collection){
boolean flag = true;
if(null != collection){
if(collection.size() > 0){
flag = false;
}
}
return flag;
}
/**
* 判断集合是否非空
* @return
*/
public static boolean isEmptyMap(Map<?,?> map){
boolean flag = true;
if(null != map){
if(map.size() > 0){
flag = false;
}
}
return flag;
}
时间: 2024-10-11 08:25:53