.isEmpty()使用示例
过去初学JAVA判断集合是否为空时:if (collection != null && collection.size() > 0) { ...}现在判断集合是否为空:if (collection != null && !collection.isEmpty()){ ...}isEmpty(),&am