摘要:
Map集合的基本应用: Map<Integer,Student> map=new HashMap<Integer,Student>(); map.put(1, new Student(1,"张三","男",23)); map.put(2, new Student(2,"里斯","女",21)); m 阅读全文
摘要:
集合的特点:元素类型可以不同,集合长度可变,空间不固定; java中对一些数据结构和算法进行了封装集合,集合也是种对象,用于存储检索,操作和传输对象; JCF java collections Framework 集合框架,集合类都在Java.util 三个内容:接口,实现类,算法 collecti 阅读全文