8.Collections工具类

2019-02-12  本文已影响0人  秋笙fine

了解Collections类的功能。
在Java提供类库的时候考虑到用户使用方便性,所以专门提供了一个集合的工具类,它可以实现List,Set,Map集合的操作。

public static<T> boolean addAll(Collection<?super T> e,T...elements)

范例:

    public static void main(String[] args) throws Exception {
        List<String> all=new ArrayList<String>();
        Collections.addAll(all,"A","B","C","D");
        System.out.println(all);
    }
image.png

转置:reverse

    public static void main(String[] args) throws Exception {
        List<String> all=new ArrayList<String>();
        Collections.addAll(all,"A","B","C","D");
        Collections.reverse(all);
        System.out.println(all);
    }
image.png

面试题:请解释Collection与Collections的区别?

总结:

这个类我们不会使用到,但是作为知识点,知道有这个类的存在就好。

上一篇下一篇

猜你喜欢

热点阅读