1
我是api工具人
这人很懒,不写文档.
展开
-
hutool对javaBean拷贝
单体java类拷贝属性 UserAccountDto userAccountDto = new UserAccountDto(); userAccountDto.setName("郭靖"); userAccountDto.setAccount("guojing"); userAccountDto.setPassword("123456"); userAccountDto.setAge("30"); UserAccount userAccount = Con原创 2022-03-20 23:26:35 · 1014 阅读 · 0 评论 -
List 如何根据对象的属性去重
1.字符串去重普通写法 private static List<String> removeStringListDupli(List<String> stringList) { Set<String> set = new LinkedHashSet<>(); set.addAll(stringList); stringList.clear(); stringList.addAll(set原创 2022-03-20 23:18:19 · 2306 阅读 · 0 评论