在進行數據類型轉換時,可能會遇到List與Set的相互轉化,可行的方式有如下示例:
// List轉Set List<String> tmpList = new ArrayList<>(); Set<String> tmpSet = new HashSet<>(tmpList); // Set轉List Set<String> tmpSet = new HashSet<>(); List<String> tmpList = new ArrayList<>(tmpSet);
在進行數據類型轉換時,可能會遇到List與Set的相互轉化,可行的方式有如下示例:
// List轉Set List<String> tmpList = new ArrayList<>(); Set<String> tmpSet = new HashSet<>(tmpList); // Set轉List Set<String> tmpSet = new HashSet<>(); List<String> tmpList = new ArrayList<>(tmpSet);
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。