CollectionUtils

CollectionUtils


/**
 * 集合常用工具
 */
public class CollectionUtils {

	public static boolean isEmpty(Collection<?> c) {
		return c == null || c.isEmpty();
	}
}


猜你喜欢

转载自mingyundezuoan.iteye.com/blog/2395390