5.1 Collection(单列),是一个接口

5.1.1 Collection

5.1.1.1 概述

  • 是单列集合的顶层接口,他表示一组对象,这些对象也称为Collection的元素
  • JDK不提供此接口的任何直接实现,他提供更具体的子接口如Set和List实现
  • 创建Collection集合的对象

    • 多态的方式
    • 具体的实现类

      5.1.1.2 常用方法

  • boolean add(E,e) 添加元素

  • boolean remove(Object o) 从集合中移除指定元素
  • void chear() 清空集合中的元素
  • boolean contains(Object o) 判断集合中是否存在指定的元素
  • boolean isEmpty() 判断集合是否为空
  • int size() 集合的长度,也就是集合中元素的个数

    5.1.1.3 集合遍历

  • Iterator:迭代器,集合的专用遍历方式

    • Iterator iterator():返回此集合中的元素迭代器,通过集合的Iterator()方法得到
    • 迭代器是通过集合的Iterator()方法得到的,所以我们说它是依赖于集合而存在的
  • Iterator中常用方法
    • E next():返回迭代中的下一个元素,通过迭代器获取元素时不能使用 集合.add() 修改集合,会抛出异常
    • boolean hasNext():如果迭代具有更多元素,则返回true ```java import java.util.ArrayList; import java.util.Collection; import java.util.Iterator;

public class Demo { public static void main(String[] args) { Collection c = new ArrayList<>() ; c.add(“hello”); c.add(“world”); c.add(“java”); System.out.println(c);

  1. Iterator<String> it = c.iterator();
  2. for(int i=0;i<3;i++)
  3. System.out.println(it.next());
  4. }

} 运行结果: [hello, world, java] hello world java

Process finished with exit code 0

  1. <a name="Uzynf"></a>
  2. ###
  3. <a name="dNPvl"></a>
  4. ### 5.1.2 Set(不可重复)
  5. <a name="j2QvL"></a>
  6. #### 5.1.2.1 哈希值
  7. - 是JDK根据对象的地址或者字符串或者数字算出来的int类型的数值
  8. - Object类中有一个方法可以获取对象的哈希值,**_public int hashCode()_** ;
  9. - 对象的哈希值特点
  10. - 同一个对象多次调用hashCode()方法返回的哈希值是相同的
  11. - 默认情况下,不同对象的哈希值是不同的。而重写hashCode()方法,可以实现让不同对象的哈希值相同。
  12. <a name="Hc0f4"></a>
  13. #### 5.1.2.2 HashSet
  14. - 特点:
  15. - 底层数据结构就是哈希表,本质就是new了一个HashMap
  16. - 对集合的迭代顺序不做任何保证,也就是说不保证存储和取出的元素顺序一致
  17. - 没有带索引的方法,所以不能使用普通for循环遍历
  18. - 由于是Set集合,所以是不包含重复元素的集合
  19. - LinkedHashSet集合特点:
  20. - 哈希表和链表实现的Set接口,具体可预测的迭代次序
  21. - 由于链表保证元素有序,也就是说元素的存储和取出顺序是一致的
  22. - 由哈于希表保证元素唯一,也就是没有重复的元素
  23. <a name="wg0F6"></a>
  24. #### 5.1.2.3 TreeSet
  25. - 元素有序,这里的顺序不是指存储和取出的顺序,而是按照一定的规则进行排序,具体排序方式取决于构造方法。
  26. - TreeSet():根据其元素的自然排序进行排序,自然排序Comparable的使用:
  27. - 存储学生对象并遍历,创建TreeSet集合使用无参构造方法。例:
  28. ```java
  29. /*
  30. 按照年龄从小到大排序,年龄相同时,按照姓名字母顺序排序
  31. */
  32. import java.util.TreeSet;
  33. public class Demo {
  34. public static void main(String[] args) {
  35. TreeSet<Student> ts = new TreeSet<Student>() ;
  36. Student s1 = new Student("xishi",22);
  37. Student s2 = new Student("wangzhaojun",25);
  38. Student s3 = new Student("diaochan",28);
  39. Student s4 = new Student("yangyuhuan",21);
  40. Student s5 = new Student("ahangsannnnnn",20);
  41. Student s6 = new Student("yhangyuhuan",20);
  42. ts.add(s1);
  43. ts.add(s2);
  44. ts.add(s3);
  45. ts.add(s4);
  46. ts.add(s5);
  47. ts.add(s6);
  48. for(Student s : ts){
  49. System.out.println(s.getName()+","+s.getAge());
  50. }
  51. }
  52. }
  53. ********************************************************************
  54. public class Student implements Comparable<Student>{
  55. private String name ;
  56. private Integer age ;
  57. public Student() {}
  58. public Student(String name, Integer age) {
  59. this.name = name;
  60. this.age = age;
  61. }
  62. public String getName() { return name;}
  63. public void setName(String name) {this.name = name;}
  64. public Integer getAge() {return age;}
  65. public void setAge(Integer age) {this.age = age;}
  66. @Override
  67. public int compareTo(Student o) {
  68. int num1 = this.age-o.age ;
  69. int num2 = num1==0?this.name.compareTo(o.name):num1 ;
  70. return num2 ;
  71. }
  72. }
  73. 运行结果:
  74. ahangsannnnnn,20
  75. yhangyuhuan,20
  76. yangyuhuan,21
  77. xishi,22
  78. wangzhaojun,25
  79. diaochan,28
  80. Process finished with exit code 0
  1. - 结论:用TreeSet集合存储自定义对象,无参构造方法使用的是自然排序对元素进行排序的。自然排序就是让元素所属的类实现Comparable接口,重写compareTo方法。重写方法时一定要注意排序规则必须按照要求的主要条件和次要条件来写。
  1. /*
  2. 用TreeSet结合存储多个学生信息,按照总分从高到低排,若总分一样,比语文成绩,若语文成绩一样比较名字的Unicode值,越小越靠前
  3. */
  4. import java.util.TreeSet;
  5. public class Demo {
  6. public static void main(String[] args) {
  7. TreeSet<Student> ts = new TreeSet<Student>() ;
  8. Student s1 = new Student("小王",20,20) ; //unicode值: 王 --> 29579
  9. Student s2 = new Student("小张",20,20) ; //unicode值: 张 --> 24352
  10. Student s3 = new Student("小黑",50,50) ;
  11. Student s4 = new Student("小白",90,90) ;
  12. Student s5 = new Student("小绿",89,91) ; //unicode值: 绿 --> 32511
  13. Student s6 = new Student("小一",89,91) ; //unicode值: 一 --> 19968
  14. ts.add(s1) ;
  15. ts.add(s2) ;
  16. ts.add(s3) ;
  17. ts.add(s4) ;
  18. ts.add(s5) ;
  19. ts.add(s6) ;
  20. for(Student s : ts){
  21. s.show();
  22. }
  23. }
  24. }
  25. ******************************************************************************
  26. public class Student implements Comparable<Student>{
  27. private String name ;
  28. private int chineseScore ;
  29. private int mathScore ;
  30. public Student() {}
  31. public Student(String name, int chineseScore, int mathScore) {
  32. this.name = name;
  33. this.chineseScore = chineseScore;
  34. this.mathScore = mathScore;
  35. }
  36. public String getName() { return name;}
  37. public void setName(String name) { this.name = name;}
  38. public int getChineseScore() {return chineseScore;}
  39. public void setChineseScore(int chineseScore) {this.chineseScore = chineseScore;}
  40. public int getMathScore() {return mathScore;}
  41. public void setMathScore(int mathScore) {this.mathScore = mathScore;}
  42. public void show(){System.out.println(name+","+chineseScore+","+mathScore);}
  43. @Override
  44. public int compareTo(Student s) {
  45. int cScore = this.chineseScore-s.chineseScore ;
  46. int num = s.chineseScore+s.mathScore-this.chineseScore-this.mathScore ;
  47. int num2 = num==0?cScore:num ;
  48. int num3 = num2==0?this.name.compareTo(s.name):num2 ;
  49. return num3;
  50. }
  51. }
  52. 运行结果:
  53. 小一,89,91
  54. 小绿,89,91
  55. 小白,90,90
  56. 小黑,50,50
  57. 小张,20,20
  58. 小王,20,20
  59. Process finished with exit code 0
  • TreeSet(Comparator comparator):根据指定的比较器进行排序,比较器排序Comparator的使用: ```java / 按照年龄从小到大排序,年龄相同时,按照姓名字母顺序排序 /

import java.util.Comparator; import java.util.TreeSet;

public class Demo { public static void main(String[] args) {

  1. TreeSet<Student> ts = new TreeSet<Student>(new Comparator<Student>() {
  2. @Override
  3. public int compare(Student s1, Student s2) {
  4. int num = s1.getAge()-s2.getAge() ;
  5. int num2 = num==0?s1.getName().compareTo(s2.getName()):num ;
  6. return num2;
  7. }
  8. }) ;
  9. Student s1 = new Student("xishi",22);
  10. Student s2 = new Student("wangzhaojun",25);
  11. Student s3 = new Student("diaochan",28);
  12. Student s4 = new Student("yangyuhuan",21);
  13. Student s5 = new Student("ahangsannnnnn",20);
  14. Student s6 = new Student("yhangyuhuan",20);
  15. ts.add(s1);
  16. ts.add(s2);
  17. ts.add(s3);
  18. ts.add(s4);
  19. ts.add(s5);
  20. ts.add(s6);
  21. for(Student s : ts){
  22. System.out.println(s.getName()+","+s.getAge());
  23. }
  24. }

}


public class Student { private String name ; private Integer age ;

  1. public Student() {}
  2. public Student(String name, Integer age) {
  3. this.name = name;
  4. this.age = age;
  5. }
  6. public String getName() { return name;}
  7. public void setName(String name) {this.name = name;}
  8. public Integer getAge() {return age;}
  9. public void setAge(Integer age) {this.age = age;}

} 运行结果:(和上面的一样) ahangsannnnnn,20 yhangyuhuan,20 yangyuhuan,21 xishi,22 wangzhaojun,25 diaochan,28

Process finished with exit code 0

  1. - 结论:用TreeSet集合存储自定义对象,带参构造方法使用的是比较器排序对元素进行排序的。比较器排序,就是让集合构造方法接收Comparator的实现类对象,重写compareTo()方法。
  2. - 没有带索引的方法,所以不能使用普通for循环遍历
  3. - 由于是set集合,所以不包含重复元素的集合
  4. <a name="vBQ02"></a>
  5. ### 5.1.3 List(可重复,有序集合)
  6. <a name="u0aTn"></a>
  7. #### 5.1.3.1 ArrayList<E>
  8. - 可调整大小的数组实现,底层数据结构是数组,查询快,增删慢
  9. - 构造方法和添加方法
  10. - _**public ArrayList()**_ 创建一个空白集合对象
  11. - _**public boolean add(E e)**_ 将指定元素追加到此集合的末尾
  12. - _**public void add(int index,E element) **_ 在此集合中的指定位置插入指定元素
  13. - 常用方法:
  14. - _**public boolean remove(Object o) **_删除指定元素,返回是否删除成功
  15. - _**public E remove(int index) **_ 删除指定元素,返回被删除的元素
  16. - _**public E set(int index,E element)**_ 修改指定索引处的元素,返回被修改的元素
  17. - _**public E get(int index)**_ 返回指定索引处的元素
  18. - _**public int size() **_返回集合中元素的个数
  19. <a name="Tp5dh"></a>
  20. #### 5.1.3.2 LinkedList<E>
  21. - 底层数据结构是链表,查询慢,增删慢
  22. - 特有功能:
  23. - _**public void addFirst(E e) **_在该列表开肉插入指定的元素
  24. - _**public void addLast(E e)**_ 将指定的元素追加到此列表的末尾
  25. - _**public E getFirst()**_ 返回此列表中的第一个元素
  26. - _**public E getLast() **_ 返回此列表中的最后一个元素
  27. - _**public E removeFirst()**_ 从此列表中删除并返回第一个元素
  28. - _**public E removeLast() **_ 从此列表中删除并返回最后一个元素
  29. <a name="LV3DI"></a>
  30. #### 5.1.3.3 ListIterator<E>
  31. - 列表迭代器
  32. - 通过List集合的ListIterator()方法得到,所以说它是List结合特有的迭代器
  33. - 用于允许程序员沿任何一方向遍历列表迭代器,在迭代期间修改列表,并获得列表中迭代器的当前位置
  34. - 常用方法
  35. - _**E next() **_ 返回迭代中下一个元素
  36. - _**boolean hasNext() **_ 如果迭代具有更多元素,则返回true
  37. - _**E previous()**_ 返回列表中的上一个元素
  38. - _**boolean hasPrevious() **_ 如果此列表迭代器在相反方法遍历列表时具有更多元素,则返回true
  39. - _**void add(E e)**_ 将指定的元素插入列表
  40. <a name="bW63n"></a>
  41. #### 5.1.3.4 增强for循环
  42. - 简化数组和Collection集合的遍历
  43. ```java
  44. public class Demo {
  45. public static void main(String[] args) {
  46. Collection<String> c = new ArrayList<>() ;
  47. c.add("hello");
  48. c.add("world");
  49. c.add("java");
  50. System.out.println(c);
  51. for(String s : c)
  52. System.out.println(s);
  53. }
  54. }
  55. 运行结果:
  56. [hello, world, java]
  57. hello
  58. world
  59. java
  60. Process finished with exit code 0

5.2 Collections 概述和使用

  • 是针对集合操作的工具类
  • 常用方法:
    • public static> void sort(List list) (有重载)将指定的列表升序排序
    • public static void reverse(List<?> list) 反转指定列表中的元素排序
    • public static void shuffle(List<?> list) 使用默认的随机源随机排列指定的列表 ```java import java.util.*;

public class Demo { public static void main(String[] args) {

  1. List<Integer> list = new ArrayList<>() ;
  2. list.add(10) ;
  3. list.add(30) ;
  4. list.add(90) ;
  5. list.add(80) ;
  6. list.add(50) ;
  7. list.add(20) ;
  8. Collections.sort(list);
  9. System.out.println(list);
  10. Collections.reverse(list) ;
  11. System.out.println(list);
  12. Collections.shuffle(list) ;
  13. System.out.println(list);
  14. }

} 运行结果: [10, 20, 30, 50, 80, 90] [90, 80, 50, 30, 20, 10] [50, 30, 90, 20, 10, 80]

Process finished with exit code 0

  1. ```java
  2. /*
  3. 例子:ArrayList存储学生对象并排序
  4. 需求:使用Collections对ArrayList进行排序;按照年龄从小到大,年龄相同时,按照姓名字母进行排序
  5. */
  6. import java.util.*;
  7. public class Demo {
  8. public static void main(String[] args) {
  9. List<Student> arr = new ArrayList<>() ;
  10. Student s1 = new Student("zhangsan",30) ;
  11. Student s2 = new Student("lisi",35) ;
  12. Student s3 = new Student("wangwu",33) ;
  13. Student s4 = new Student("liuliu",33) ;
  14. arr.add(s1);
  15. arr.add(s2);
  16. arr.add(s3);
  17. arr.add(s4);
  18. Collections.sort(arr, new Comparator<Student>() {
  19. @Override
  20. public int compare(Student s1, Student s2) {
  21. int num1 = s1.getAge()-s2.getAge() ;
  22. int num2 =num1==0?s1.getName().compareTo(s2.getName()):num1 ;
  23. return num2 ;
  24. }
  25. });
  26. for(Student s:arr){
  27. System.out.println(s.getName()+","+s.getAge());
  28. }
  29. }
  30. }
  31. *****************************************************************************
  32. public class Student {
  33. private String name ;
  34. private Integer age ;
  35. public Student() {}
  36. public Student(String name, Integer age) {
  37. this.name = name;
  38. this.age = age;
  39. }
  40. public String getName() { return name;}
  41. public void setName(String name) {this.name = name;}
  42. public Integer getAge() {return age;}
  43. public void setAge(Integer age) {this.age = age;}
  44. }
  45. 运行结果:
  46. zhangsan,30
  47. liuliu,33
  48. wangwu,33
  49. lisi,35
  50. Process finished with exit code 0

5.3 Map集合概述(双列)

  • Interface Map K:键的类型,V:值的类型
  • 将键映射到值的对象;不能包含重复的键;每个键可以映射到最多一个值。
  • 基本方法:

    • V put(K key,value) 添加元素
    • V remove(Object key) 根据键删除键值对元素
    • void clear() 清空Map集合
    • boolean containsKey(Object key) 判断集合是否包含指定的键
    • boolean containsValue(Object Value) 判断集合是否包含指定的值
    • boolean isEmpty() 判断集合是否为空
    • int size() 集合的长度,也就是集合中键值对的个数
      1. import java.util.* ;
      2. public class Demo {
      3. public static void main(String[] args) {
      4. Map<String,String> map = new HashMap<>() ;
      5. map.put("001","111") ;
      6. map.put("002","222");
      7. map.put("003","333");
      8. map.put("004","444");
      9. // map.remove("003");
      10. map.clear();
      11. System.out.println(map.isEmpty());
      12. System.out.println(map.size());
      13. // System.out.println(map.containsValue("003"));
      14. // System.out.println(map.containskey("003"));
      15. System.out.println(map);
      16. }
      17. }
  • 获取方法:

    • V get(Object key) 根据键获取
    • Set keySet() 获取所有键的集合
    • Collection values() 获取所有值的集合
    • Set> entrySet() 获取所有键值对对象集合;用getKey()得到键,用getValue()得到值。 ```java import java.util.* ; public class Demo { public static void main(String[] args) {

      Map map = new HashMap() ; map.put(“001”,”111”) ; map.put(“002”,”222”); map.put(“003”,”333”); map.put(“004”,”444”);

      System.out.println(map.get(“0011”)); System.out.println(map.get(“001”)); System.out.println(“————-“); Collection values = map.values(); for(String i : values){

      1. System.out.print(i+" ");

      } System.out.println(); Set keySet = map.keySet() ; for(String i : keySet){

      1. System.out.print(i+" ");

      } System.out.println(); System.out.println(“————-“); Set> entrySet = map.entrySet() ; for(Map.Entry me : entrySet){

      1. System.out.println(me.getKey()+","+me.getValue());

      }

      } } 运行结果: null 111


111 222 333 444

001 002 003 004

001,111 002,222 003,333 004,444

Process finished with exit code 0

  1. - 例子:
  2. ```java
  3. import java.util.* ;
  4. public class Demo {
  5. public static void main(String[] args) {
  6. HashMap<String,Student> map = new HashMap<String,Student>() ;
  7. Student s1 = new Student("111",66,33) ;
  8. Student s2 = new Student("222",67,34) ;
  9. Student s3 = new Student("333",68,35) ;
  10. map.put("001",s1) ;
  11. map.put("002",s2);
  12. map.put("003",s3);
  13. Set<String> setKey = map.keySet() ;
  14. for(String key : setKey){
  15. System.out.print(key+",");
  16. map.get(key).show();
  17. }
  18. System.out.println("----------------");
  19. Set<Map.Entry<String,Student>> entrySet = map.entrySet() ;
  20. for(Map.Entry<String,Student> me : entrySet){
  21. System.out.print(me.getKey()+",");
  22. me.getValue().show();
  23. }
  24. }
  25. }
  26. ***********************************************************************************
  27. public class Student {
  28. private String name ;
  29. private int chineseScore ;
  30. private int mathScore ;
  31. public Student() {}
  32. public Student(String name, int chineseScore, int mathScore) {
  33. this.name = name;
  34. this.chineseScore = chineseScore;
  35. this.mathScore = mathScore;
  36. }
  37. public String getName() { return name; }
  38. public void setName(String name) { this.name = name; }
  39. public int getChineseScore() { return chineseScore; }
  40. public void setChineseScore(int chineseScore) { this.chineseScore = chineseScore; }
  41. public int getMathScore() { return mathScore; }
  42. public void setMathScore(int mathScore) { this.mathScore = mathScore; }
  43. public void show(){
  44. System.out.println(name+","+chineseScore+","+mathScore);
  45. }
  46. }
  47. 运行结果:
  48. 002,222,67,34
  49. 003,333,68,35
  50. ----------------
  51. 001,111,66,33
  52. 002,222,67,34
  53. 003,333,68,35
  54. Process finished with exit code 0
  1. import java.util.* ;
  2. public class Demo {
  3. public static void main(String[] args) {
  4. HashMap<Student,String> map = new HashMap<Student,String>() ;
  5. Student s1 = new Student("111",66,33) ;
  6. Student s2 = new Student("222",67,34) ;
  7. Student s3 = new Student("333",68,35) ;
  8. Student s4 = new Student("333",68,35) ;
  9. map.put(s1,"111") ;
  10. map.put(s2,"222") ;
  11. map.put(s3,"333") ;
  12. map.put(s4,"444") ;
  13. Set<Student> s = map.keySet() ;
  14. for(Student ss : s){
  15. System.out.println(ss.getName()+","+ss.getChineseScore()+","+ss.getMathScore()+"-->"+map.get(ss));
  16. }
  17. }
  18. }
  19. ***********************************************************************************
  20. import java.util.Objects;
  21. public class Student {
  22. private String name ;
  23. private int chineseScore ;
  24. private int mathScore ;
  25. public Student() {}
  26. public Student(String name, int chineseScore, int mathScore) {
  27. this.name = name;
  28. this.chineseScore = chineseScore;
  29. this.mathScore = mathScore;
  30. }
  31. public String getName() { return name; }
  32. public void setName(String name) { this.name = name; }
  33. public int getChineseScore() { return chineseScore; }
  34. public void setChineseScore(int chineseScore) { this.chineseScore = chineseScore; }
  35. public int getMathScore() { return mathScore; }
  36. public void setMathScore(int mathScore) { this.mathScore = mathScore; }
  37. public void show(){
  38. System.out.println(name+","+chineseScore+","+mathScore);
  39. }
  40. //重写后比的是对象里面的属性值,不然比的是地址值,就会出现两个 333,68,35
  41. @Override
  42. public boolean equals(Object o) {
  43. if (this == o) return true;
  44. if (o == null || getClass() != o.getClass()) return false;
  45. Student student = (Student) o;
  46. return chineseScore == student.chineseScore && mathScore == student.mathScore && Objects.equals(name, student.name);
  47. }
  48. @Override
  49. public int hashCode() {
  50. return Objects.hash(name, chineseScore, mathScore);
  51. }
  52. }
  53. 运行结果:
  54. 111,66,33-->111
  55. 333,68,35-->444
  56. 222,67,34-->222
  57. Process finished with exit code 0
  1. /* ArrayList嵌套HashMap */
  2. import java.util.* ;
  3. public class Demo {
  4. public static void main(String[] args) {
  5. ArrayList<HashMap<String,String>> ah =new ArrayList<>();
  6. HashMap<String,String> hm1 = new HashMap<String,String>() ;
  7. HashMap<String,String> hm2 = new HashMap<String,String>() ;
  8. HashMap<String,String> hm3 = new HashMap<String,String>() ;
  9. hm1.put("001","111");
  10. hm2.put("002","222");
  11. hm3.put("003","333");
  12. ah.add(hm1);
  13. ah.add(hm2);
  14. ah.add(hm3);
  15. for(HashMap<String,String> hm:ah){
  16. Set<String> setKey = hm.keySet() ;
  17. for (String key:setKey){
  18. System.out.println(key+","+hm.get(key));
  19. }
  20. }
  21. }
  22. }
  1. /* HashMap嵌套ArrayList */
  2. import java.util.* ;
  3. public class Demo {
  4. public static void main(String[] args) {
  5. HashMap<String,ArrayList<String>> hashMap = new HashMap<String,ArrayList<String>>() ;
  6. ArrayList<String> array1 = new ArrayList<String>() ;
  7. ArrayList<String> array2 = new ArrayList<String>() ;
  8. ArrayList<String> array3 = new ArrayList<String>() ;
  9. array1.add("11");
  10. array1.add("111");
  11. array2.add("22");
  12. array2.add("222");
  13. array3.add("33");
  14. array3.add("333");
  15. hashMap.put("001",array1);
  16. hashMap.put("002",array2);
  17. hashMap.put("003",array3);
  18. Set<String> setKey = hashMap.keySet() ;
  19. for(String key : setKey){
  20. ArrayList<String> list = hashMap.get(key) ;
  21. System.out.print(key);
  22. for(String s :list){
  23. System.out.print(" "+s);
  24. }
  25. System.out.println();
  26. }
  27. }
  28. }
  29. 运行结果:
  30. 001 11 111
  31. 002 22 222
  32. 003 33 333
  1. /* 统计字符串中每个字符出现的次数 */
  2. import java.util.* ;
  3. public class Demo {
  4. public static void main(String[] args) {
  5. Scanner sc = new Scanner(System.in) ;
  6. String line = sc.nextLine() ;
  7. TreeMap<Character,Integer> tm = new TreeMap<>() ;
  8. for(int i=0;i<line.length();i++){
  9. char key = line.charAt(i) ; //读取对应的索引字符
  10. Integer value = tm.get(key) ; //把字符作为键,来获取值
  11. if(value == null){
  12. tm.put(key,1) ; //如果值为空就是该字符没有在集合中出现过,创建一个键值对
  13. }else {
  14. value++ ;
  15. tm.put(key,value);
  16. }
  17. }
  18. StringBuilder sb = new StringBuilder();
  19. Set<Character> setKey = tm.keySet() ;
  20. for(Character key : setKey){
  21. sb.append(key).append("-->"+tm.get(key)+"\n") ;
  22. }
  23. System.out.println(sb.toString());
  24. }
  25. }
  26. 运行结果:
  27. ;-->1
  28. a-->4
  29. d-->1
  30. f-->1
  31. g-->4
  32. h-->1
  33. i-->1
  34. j-->1
  35. l-->1
  36. s-->1
  37. Process finished with exit code 0

5.4 泛型

  • 概述:是JDK5中引入的特性,他提供了编译时类型安全检测机制,该机制允许在编译时检测到非法的类型,他的本质是参数化类型,也就是所操作的数据类型被指定为一个参数。提到参数,最熟悉的就是定义方法时有形参,然后调用此方法时传递实参。那么参数化类型怎么理解呢?顾明思义,就是 将 类型由原来的具体的类型参数化,然后在使用/调用是传入具体的类型。这种参数类型可以用在类、方法和接口中,分别被称为泛型类、泛型方法、泛型接口。
  • 格式:
    • <类型>:指定一种类型的格式。这里的类型可以看成是形参。
    • <类型1,类型2…>:指定多种类型的格式,多种类型之间用逗号隔开。这里的类型可以看成是形参。
    • 将来具体调用的时候给定的类型可以看成是实参,并且实参的类型只能是引用数据类型。
  • 好处:把运行时期的问题提前到了编译期间;避免了强制类型转换。
  • 泛型类:格式:修饰符 class 类名<类型>{}
    ```java public class Demo { public static void main(String[] args) {

    1. Generic<String> name = new Generic<>() ;
    2. name.setT("小红");
    3. Generic<Integer> age = new Generic<>() ;
    4. age.setT(99);
    5. System.out.println(name.getT()+","+age.getT());

    } }


public class Generic { private T t ;

  1. public T getT() { return t; }
  2. public void setT(T t) { this.t = t; }

} 运行结果: 小红,99

Process finished with exit code 0

  1. - 泛型方法:格式:修饰符<类型> 返回值类型 方法名(类型 变量名)
  2. ```java
  3. public class Demo {
  4. public static void main(String[] args) {
  5. Generic name = new Generic() ;
  6. name.show("sss");
  7. name.show(666);
  8. }
  9. }
  10. ***********************************************************************************
  11. public class Generic {
  12. public <T> void show(T t){
  13. System.out.println(t);
  14. }
  15. }
  16. 运行结果:
  17. sss
  18. 666
  19. Process finished with exit code 0
  • 泛型接口:格式:修饰符 interface 接口名<类型> ```java public class Demo { public static void main(String[] args) {
    1. Generic<String> name = new GenericImpl<String>() ;
    2. name.show("sss");
    3. Generic<Integer> age = new GenericImpl<>();
    4. age.show(666);
    } }

public interface Generic { void show(T t) ; }


public class GenericImpl implements Generic { @Override public void show(T t) { System.out.println(t); } }

  1. - 类型通配符:
  2. - 为了表示各种泛型List的父类,可以使用类型通配符 <?>
  3. - List<?>:表示元素类型未知的List,它的元素可以匹配任何的类型。
  4. - 这种通配符的List仅表示他是各种泛型的父类,并不能把元素添加到其中。
  5. ```java
  6. import java.util.* ;
  7. public class Demo {
  8. public static void main(String[] args) {
  9. List<?> list1 = new ArrayList<Object>() ;
  10. List<?> list2 = new ArrayList<Number>() ;
  11. List<?> list3 = new ArrayList<String>() ;
  12. }
  13. }
  • 如果不希望List<?>是任何泛型List的父类,只希望它代表某一类泛型LIst的父类,可以使用类型通配符的上限。
    • 类型通配符上限:<? extend 类型>
    • List<? extends Number> : 表示的类型是Number或者其子类型
  • 除了可以指定上限还可以指定下限,
    • 类型通配符下限 <? super 类型>
    • List<? super Number>:表示的类型是Number或者其父类
  • 可变参数(可变参数又称个数可变,用作方法的形参出现,那么方法参数个数就是可变的了)
    • 格式:修饰符 返回值类型 方法名(数据类型… 变量名)
    • 这里的变量是一个数组。如果一个方法有多个参数,包含可变参数,可变参数要放在最后面
      1. public class Demo {
      2. public static void main(String[] args) {
      3. System.out.println(sum(10,20)); //30
      4. System.out.println(sum(10,20,30)); //60
      5. System.out.println(sum(10,20,30,40)); //100
      6. System.out.println(sum(10,20,30,40,50)); //150
      7. System.out.println(sum(10,20,30,40,50,60)); //210
      8. System.out.println(sum(10,20,30,40,50,60,70)); //280
      9. }
      10. public static int sum(int... a){
      11. int sum=0 ;
      12. for(int i : a){
      13. sum+=i ;
      14. }
      15. return sum ;
      16. }
      17. public static int sum(int a,int b,int c){
      18. return a+b+c ;
      19. }
      20. public static int sum(int a,int b,int c,int d){
      21. return a+b+c+d ;
      22. }
      23. }