Java中Collection和Collections的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中Collection和Collections的区别相关的知识,希望对你有一定的参考价值。

1、java.util.Collection 是一个集合接口(集合类的一个顶级接口)。它提供了对集合对象进行基本操作的通用接口方法。Collection接口在Java 类库中有很多具体的实现。Collection接口的意义是为各种具体的集合提供了最大化的统一操作方式,其直接继承接口有List与Set。
Collection
├List
│├LinkedList
│├ArrayList
│└Vector
│ └Stack
└Set
2、Collections则是集合类的一个工具类/帮助类,其中提供了一系列静态方法,用于对集合中元素进行排序、搜索以及线程安全等各种操作。
1) 排序(Sort)
使用sort方法可以根据元素的自然顺序 对指定列表按升序进行排序。列表中的所有元素都必须实现 Comparable 接口。此列表内的所有元素都必须是使用指定比较器可相互比较的

List<Integer> list = new ArrayList<Integer>();
int array[] = 112, 111, 23, 456, 231 ;
for (int i = 0; i < array.length; i++)
list.add(array[i]);

Collections.sort(list);
for (int i = 0; i < array.length; i++)
System.out.println(list.get(i));

结果:23 111 112 231 456
2) 混排(Shuffling)
混排算法所做的正好与 sort 相反: 它打乱在一个 List 中可能有的任何排列的踪迹。也就是说,基于随机源的输入重排该 List, 这样的排列具有相同的可能性(假设随机源是公正的)。这个算法在实现一个碰运气的游戏中是非常有用的。例如,它可被用来混排代表一副牌的 Card 对象的一个 List 。另外,在生成测试案例时,它也是十分有用的。
Collections.Shuffling(list)
3) 反转(Reverse)
使用Reverse方法可以根据元素的自然顺序 对指定列表按降序进行排序。
Collections.reverse(list)
4) 替换所以的元素(Fill)
使用指定元素替换指定列表中的所有元素。
Collections.fill(li,"aaa");
5) 拷贝(Copy)
用两个参数,一个目标 List 和一个源 List, 将源的元素拷贝到目标,并覆盖它的内容。目标 List 至少与源一样长。如果它更长,则在目标 List 中的剩余元素不受影响。
Collections.copy(list,li): 后面一个参数是目标列表 ,前一个是源列表
6) 返回Collections中最小元素(min)
根据指定比较器产生的顺序,返回给定 collection 的最小元素。collection 中的所有元素都必须是通过指定比较器可相互比较的
Collections.min(list)
7) 返回Collections中最小元素(max)
根据指定比较器产生的顺序,返回给定 collection 的最大元素。collection 中的所有元素都必须是通过指定比较器可相互比较的
Collections.max(list)
8) lastIndexOfSubList
返回指定源列表中最后一次出现指定目标列表的起始位置
int count = Collections.lastIndexOfSubList(list,li);
9) IndexOfSubList
返回指定源列表中第一次出现指定目标列表的起始位置
int count = Collections.indexOfSubList(list,li);
10) Rotate
根据指定的距离循环移动指定列表中的元素
Collections.rotate(list,-1);
如果是负数,则正向移动,正数则方向移动
参考技术A Collection 是集合的父类接口;
Collections是集合的操作工具类,二者并没有什么关系
参考技术B Collections是个java.util下的类,它包含有各种有关集合操作的静态方法。

Collection是个java.util下的接口,它是各种集合结构的父接口
参考技术C 1、java.util.Collection 是一个集合接口。它提供了对集合对象进行基本操作的通用接口方法。Collection接口在Java 类库中有很多具体的实现。Collection接口的意义是为各种具体的集合提供了最大化的统一操作方式。
Collection
├List
│├LinkedList
│├ArrayList
│└Vector
│ └Stack
└Set

2、java.util.Collections 是一个包装类。它包含有各种有关集合操作的静态多态方法。此类不能实例化,就像一个工具类,服务于Java的Collection框架。

Java代码
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class TestCollections

public static void main(String args[])
//注意List是实现Collection接口的
List list = new ArrayList();
double array[] = 112, 111, 23, 456, 231 ;
for (int i = 0; i < array.length; i++)
list.add(new Double(array[i]));

Collections.sort(list);
for (int i = 0; i < array.length; i++)
System.out.println(list.get(i));

// 结果:23.0 111.0 112.0 231.0 456.0

本回答被提问者和网友采纳

CollectionIterableIterator

一、概念

Collection是集合类的顶级接口,继承自Iterable

二、源码分析

1Collection

 

//继承自Iterable<E>
public interface Collection<E> extends Iterable<E> {
int size();//返回collection中元素的个数

boolean isEmpty();//判断collection中元素是否为空,如果为空,则返回true

boolean contains(Object o);//判断collection中是否包含某个元素,如果包含,则返回true

Iterator<E> iterator();//迭代器

Object[] toArray();//将collection中的元素返回成Object数组

<T> T[] toArray(T[] a);//转换为特定类型数组,且数组为list或者list父级

boolean add(E e);//添加元素

boolean remove(Object o);//删除元素

boolean containsAll(Collection<?> c);//是否包含某个集合的所有元素

boolean addAll(Collection<? extends E> c);//添加某个集合的所有元素

boolean removeAll(Collection<?> c);//删除某个集合的所有元素

default boolean removeIf(Predicate<? super E> filter) {//验证一个参数是否符合要求
    Objects.requireNonNull(filter);
    boolean removed = false;
    final Iterator<E> each = iterator();
    while (each.hasNext()) {
        if (filter.test(each.next())) {
            each.remove();
            removed = true;
        }
    }
    return removed;
}

boolean retainAll(Collection<?> c);//判断list是否包含某个集合的全部

void clear();//清空集合

boolean equals(Object o);//比较某个元素

int hashCode();//返回hashCode

@Override
default Spliterator<E> spliterator() {//分割迭代器,分段对集合进行迭代,提高程序的并行能力,在多线程情形之下,每个线程处理集合一部分,线程安全
    return Spliterators.spliterator(this, 0);
}

default Stream<E> stream() {//返回非并行连续的流对象
    return StreamSupport.stream(spliterator(), false);
}

default Stream<E> parallelStream() {//返回并行的流对象
    return StreamSupport.stream(spliterator(), true);
}
}

 

2、Iterable

public interface Iterable<T> {
    /**
     * Returns an iterator over elements of type {@code T}.
     * 返回一个对应泛型的迭代器
     * @return an Iterator.
     */
    Iterator<T> iterator();

    /**
     * Performs the given action for each element of the {@code Iterable}
     * until all elements have been processed or the action throws an
     * exception.  Unless otherwise specified by the implementing class,
     * actions are performed in the order of iteration (if an iteration order
     * is specified).  Exceptions thrown by the action are relayed to the
     * caller.
     *
     * @implSpec
     * <p>The default implementation behaves as if:
     * <pre>{@code
     *     for (T t : this)
     *         action.accept(t);
     * }</pre>
     * 执行每个元素给定的行为,直到所有元素被处理或者处理过程中抛出异常
     * @param action The action to be performed for each element
     * @throws NullPointerException if the specified action is null
     * @since 1.8
     */
    default void forEach(Consumer<? super T> action) {
        Objects.requireNonNull(action);
        for (T t : this) {
            action.accept(t);
        }
    }

    /**
     * Creates a {@link Spliterator} over the elements described by this
     * {@code Iterable}.
     *
     * @implSpec
     * The default implementation creates an
     * <em><a href="Spliterator.html#binding">early-binding</a></em>
     * spliterator from the iterable‘s {@code Iterator}.  The spliterator
     * inherits the <em>fail-fast</em> properties of the iterable‘s iterator.
     *
     * @implNote
     * The default implementation should usually be overridden.  The
     * spliterator returned by the default implementation has poor splitting
     * capabilities, is unsized, and does not report any spliterator
     * characteristics. Implementing classes can nearly always provide a
     * better implementation.
     * 分割迭代器,分段对集合进行迭代,提高程序的并行能力,在多线程情形之下,每个线程处理集合一部分,线程安全
     * @return a {@code Spliterator} over the elements described by this
     * {@code Iterable}.
     * @since 1.8
     */
    default Spliterator<T> spliterator() {
        return Spliterators.spliteratorUnknownSize(iterator(), 0);
    }
}

3、Iterator

public interface Iterator<E> {
    /**
     * Returns {@code true} if the iteration has more elements.
     * (In other words, returns {@code true} if {@link #next} would
     * return an element rather than throwing an exception.)
     * 判断是否有下一个元素
     * @return {@code true} if the iteration has more elements
     */
    boolean hasNext();

    /**
     * Returns the next element in the iteration.
     * 迭代过程返回下个元素
     * @return the next element in the iteration
     * @throws NoSuchElementException if the iteration has no more elements
     */
    E next();

    /**
     * Removes from the underlying collection the last element returned
     * by this iterator (optional operation).  This method can be called
     * only once per call to {@link #next}.  The behavior of an iterator
     * is unspecified if the underlying collection is modified while the
     * iteration is in progress in any way other than by calling this
     * method.
     *
     * @implSpec
     * The default implementation throws an instance of
     * {@link UnsupportedOperationException} and performs no other action.
     *
     * @throws UnsupportedOperationException if the {@code remove}
     *         operation is not supported by this iterator
     * 默认删除方法
     * @throws IllegalStateException if the {@code next} method has not
     *         yet been called, or the {@code remove} method has already
     *         been called after the last call to the {@code next}
     *         method
     */
    default void remove() {
        throw new UnsupportedOperationException("remove");
    }

    /**
     * Performs the given action for each remaining element until all elements
     * have been processed or the action throws an exception.  Actions are
     * performed in the order of iteration, if that order is specified.
     * Exceptions thrown by the action are relayed to the caller.
     *
     * @implSpec
     * <p>The default implementation behaves as if:
     * <pre>{@code
     *     while (hasNext())
     *         action.accept(next());
     * }</pre>
     * 执行每个元素给定的行为,直到所有元素被处理或者处理过程中抛出异常
     * @param action The action to be performed for each element
     * @throws NullPointerException if the specified action is null
     * @since 1.8
     */
    default void forEachRemaining(Consumer<? super E> action) {
        Objects.requireNonNull(action);
        while (hasNext())
            action.accept(next());
    }
}

  

 

 

技术图片

 

以上是关于Java中Collection和Collections的区别的主要内容,如果未能解决你的问题,请参考以下文章

JDK_API剖析之java.util包

线程“主”java.lang.NoSuchMethodError 中的异常:scala.Predef$.refArrayOps([Ljava/lang/Object;)Lscala/collectio

哪些类实现或继承了collection接口?

collection c = new arraylist();这句话啥意思?

大公司喜欢问的Java集合类面试题

CollectionIterableIterator