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");
希望这张图能帮到你,属于原创,需要转载,请注明出处!