摘要: /** * 列表 ArrayList,LinkedList * 1、值列表和对象列表 contains与indexOf测试 * 2、基于LinkedList构建堆栈 push pop和队列 offer poll * <p> * Set HashSet,TreeSet 无序,不可重复 * 1、Hash 阅读全文
posted @ 2022-08-10 14:09 yuxuan0802 阅读(17) 评论(0) 推荐(0)
摘要: @Data public class BasicTest { /** * 参数检验 * * @param a */ @Test void testArg(String a) { if (a == null) { throw new NullPointerException("参数a为空"); } i 阅读全文
posted @ 2022-08-10 13:56 yuxuan0802 阅读(23) 评论(0) 推荐(0)