企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
### 概述 集合嵌套并不是一个新的知识点,仅仅是集合内容又是集合,如Collection集合嵌套、Collection集合与Map集合相互嵌套、Map集合嵌套。 **ArrayList嵌套 ArrayList** ``` ArrayList<ArrayList<String>> Collection<ArrayList<Integer>> ``` **Map嵌套 ArrayList** ~~~ HashMap<String, ArrayList<Person>> ArrayList<HashMap<String, String>> ~~~ **Map集合嵌套** ~~~ HashMap<String, HashMap<String,String>> HashMap<String, HashMap<Person,String>> ~~~