摘要:
1.实体类 /* * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * * Redistribution and use in source and binary forms, with or without * modific 阅读全文
摘要:
1. List中简单元素去重(String等) public List<String> removeStringListDupli(List<String> stringList) { Set<String> set = new LinkedHashSet<>(); set.addAll(strin 阅读全文