摘要:
/** 判断List2是否属于list1的子集 * @param list1 * @param list2 * @return */ public static <E> boolean isSubList(List<E> parent, List<E> children) { List<E> par 阅读全文
摘要:
/** * 比较两个List集合是否相等 * <p>注:1. 如果一个List的引用为<code>null</code>,或者其包含的元素个数为0,那么该List在本逻辑处理中都算作空; * <p>2. 泛型参数E涉及到对象,所以需要确保正确实现了对应对象的<code>equal()</code>方 阅读全文
摘要:
表结构: CREATE TABLE test.reyosoft ( id int(11) NOT NULL AUTO_INCREMENT, uid int(11) DEFAULT 0 COMMENT '用户id', score decimal(10, 2) DEFAULT 0.00 COMMENT 阅读全文