Java中集合的理解
Posted Piper.Xiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中集合的理解相关的知识,希望对你有一定的参考价值。
java中Collection集合的理解
一、Collection结构图:
二、Map关系图:
Iterator接口:用来遍历集合Collection元素;
Collections工具类:操作Collection及Map的工具类,大部分为static的方法。
附:Properties的使用
1 Properties pros = new Properties(); 2 pros.load(new FileInputStream(new File("jdbc.properties"))); 3 tring user = pros.getProperty("user"); 4 System.out.println(user); 5 String password = pros.getProperty("password");
希望这张图能帮到你,属于原创,需要转载,请注明出处!
以上是关于Java中集合的理解的主要内容,如果未能解决你的问题,请参考以下文章