java中如何复制HashMap呢?
下文笔者讲述使用java代码复制HashMap的方法分享,如下所示
HashMap复制操作工具方法
实现思路: 使用for循环对HashMap中的每行记录进行复制例:
HashMap复制操作工具方法
public static HashMap<Integer, list<TestClass>> copy( HashMap<Integer, List<TestClass>> original) { HashMap<Integer, List<TestClass>> copy = new HashMap<Integer, List<TestClass>>(); for (Map.Entry<Integer, List<TestClass>> entry : original.entrySet()) { copy.put(entry.getKey(), new ArrayList<TestClass>(entry.getValue())); } return copy; }
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。