判断对像样否为空(数据、集合等对象)

判断对象是否为空(数据、集合等对象)public static boolean isEmpty(Object obj) {if (obj null) {retur

判断对象是否为空(数据、集合等对象)