美文网首页
★09.容器

★09.容器

作者: iDragonfly | 来源:发表于2017-07-03 19:53 被阅读0次

Collection容器

示意图

Set

List

Queue

Map容器

示意图

Map

常用工具

Arrays

  • Arrays.asList():接受一个数组或者一个逗号分隔的元素列表,返回一个尺寸无法改变的List。

Collections

  • Collections.addAll:接受一个Collection对象和一个逗号分隔的元素列表。把元素列表添加到这个Collection中,返回这个Collection对象。
  • Collections.sort
  • Collections.shuffle
  • Collections.fill:用元素引用填充容器,参数(容器,元素)。
  • Collections.nCopies:生成n个对象的List,参数(个数,元素)。

迭代器

迭代器解惑

List<String> pets = Arrays.asList("a", "b", "c", "d", "e", "f", "g");

ListIterator<String> it1 = pets.listIterator(7);
while (it1.hasPrevious()) {
    System.out.println(it1.previousIndex() + ", " + it1.previous() + "; ");
}

System.out.println();
ListIterator<String> it2 = pets.listIterator(0);
while (it2.hasNext()) {
    System.out.println(it2.nextIndex() + ", " + it2.next() + ", ");
}

foreach

  1. foreach依赖Iterable接口:
    1. for(var v : Iterable接口)
    2. Iterable.iterator():返回一个Iterator<>类。

哈希方法

  1. 编写HashCode的技巧:
    1. 定义一个result的int变量,并赋值为某个非零常量,如17。
    2. 根据下表为每一个有意义的域f计算出一个散列码c。


    3. 合并计算:
String s = "something";
Integer id = 100;
int result = 17;
result = 37 * result + s.hashCode();
result = 37 * result + id.hashCode();

相关文章

网友评论

      本文标题:★09.容器

      本文链接:https://www.haomeiwen.com/subject/qnuzcxtx.html