zoukankan      html  css  js  c++  java
  • Arrays类和Collections的运用

    为了方便的对Array对象、Collection对象进行操作,Java中提供了Arrays类和Collections类对其进行操作

    其中Arrays和Collections中所有的方法都为静态的,以方便直接传入对象引用,执行相应的功能。

    十分常用的方法有:

    Arrays.asList(数组对象)  //此静态方法用于将Array转化为List类型对象。常常用于List类型对象的初始化中。

    Collection.addAll(Collection对象,数组对象或可变参数列表 ) //次静态方法用于向一个已经存在的Collection中拼接数据

    Example:

    Collection<String>  appleStore= new ArrayList<String>(Arrays.asList("Sweet,Sour".split(",")));

    为了对ArrayList<String>进行初始话,Oracle公司提供了三种重载的构造器:

    1、ArrayList() 
              Constructs an empty list with an initial capacity of ten.

    2、ArrayList(Collection c) 
              Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.

    3、ArrayList(int initialCapacity) 
              Constructs an empty list with the specified initial capacity.

    此处使用了第二个构造器,即传入一个List对象。 

    此处"Sweet,Sour".split(",")首先将字符串对象转化为了一个String数组,包含两个对象。

    而后调用Array.asList(数组对象),将其转换为一个List对象。

    !值得注意的是collection对象.addAll(list对象),注意此处是collection对象而非Collections类。

     

    Example2:

    Collection<String> appleStore=new Collection<String>();

    String[] strArray="Sweet0,Sour0".split(",");

    Collections.addAll(appleStore, strArray);

    Collections.addAll(appleStore, Sweet1, Sour2);

    此使用了静态方法Collections.addAll, 可以发现其在初始化上更具有灵活性,第一个参数为Collection对象,第二个可以是一个数组或可变参数列表(实质是数组,只是java编译器的可变参数列表功能,可以实现自动的将其转换为数组)。

    Collections.addAll()方法和collection.add()在处理过程上具有很大的差别,所以其效率上的差距也很大,适用于不同的场景,以下为国外论坛上的一些经典解释。

    Let's take a closer look at the two of them:

    col.addAll(Arrays.asList(1,2,3,4,5));   //此处采用collection.addAll()

    Here's what happens:

    1. varags + autoboxing creates Integer[]  //可变参数列表,并且采用Integer的自动包装器
    2. Arrays.asList creates a List<Integer> backed by the array  //根据数组生成相应的List
    3. addAll iterates over a Collection<Integer> using Iterator<Integer> //通过迭代器访问并添加每一个对象
    // b)
    Collections.addAll(col,1,2,3,4,5); //使用Collections.addAll()静态方法

    Here's what happens:

    1. varargs + autoboxing creates Integer[]  //可变参数列表,自动包装器
    2. addAll iterates over an array (instead of an Iterable<Integer>)  //迭代访问数组

    We can see now that b) may be faster because:

    Arrays.asList call is skipped, i.e. no intermediary List is created.   //采用Collections.addAll()可以不用建立过渡的List对象,而是直接进行遍历添加

    Since the elements are given in an array (thanks to varargs mechanism), iterating over them may be faster than using Iterator.

    That said, unless profiling shows otherwise, the difference isn't likely to be "significant". Do not optimize prematurely. While Java Collection Framework classes may be slower than arrays, they perform more than adequately for most applications.

    API links

    Summary

    • If you're adding elements from an array, you can use Collections.addAll(col, arr) //如果通过一个数组来添加,用静态方法Collections.addAll().
      • Remember that varargs are also done using arrays
    • If you're adding elements from a Collection, use col.addAll(otherCol) //如果是添加一个已经有了点List对象,就用方法collection.addAll().
      • Do NOT e.g. Collections.addAll(col, otherCol.toArray())
        • Such roundabout way is likely to be slower!
    • It's not that one is supremely faster than the other 
      • It's about skipping unnecessary steps given the current situation  //关键是根据实际的情形进行选择,两者都很重要!

     

  • 相关阅读:
    数据库----索引与补充
    数据库----知识点总结
    数据库----mysql 存储引擎,表介绍
    数据库----mysql表的约束和查询
    数据库----mysql 表的操作
    初识数据库
    并发编程----协程
    并发编程----同步,异步,阻塞,非阻塞,异步加回调机制,线程队列,event事件
    并发编程----GIL,进程池/线程池
    django中的模板渲染、模板继承、组件、插件
  • 原文地址:https://www.cnblogs.com/airwindow/p/2560562.html
Copyright © 2011-2022 走看看