欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在Java中Collection的一些常用方法总结

程序员文章站 2022-06-26 21:38:23
java中collection的常用方法1、add() 向中添加元素add(100) 自动装箱操作,实际上是放进去的一个对象, integer n = new integer(100),实际上是把n放...

java中collection的常用方法

1、add() 向中添加元素

add(100) 自动装箱操作,实际上是放进去的一个对象, integer n = new integer(100),实际上是把n放进了

collection co = new arraylist();
co.add(1);

2、addall( collection c )

将指定集合中的所有元素添加到从集合中
因为arrylist类中重写了equals() 方法,所以两个集合比较相等。

public class lxc {
    public static void main(string[] args) {
        collection c = new arraylist();
        for(int i = 0; i < 5; i ++) {
            c.add(i);
        }
        collection c1 = new arraylist();
        c1.addall(c);
        system.out.println(c1.equals(c)); // true
    }
}

3、size() 获取集合中元素个数

collection co = new arraylist();
int n = co.size();

4、clear() 清空集合

collection co = new arraylist();
co.clear();

5、contains(100) 判断当前集合中是否包含100这个元素 返回 true、false

collection co = new arraylist();
co.add(100);
co.add(200);
boolean r = co.contains(100); // true

*** 深入探究***

例一:

下边代码,new了两个字符串,s1被添加到集合中去了,但是s2没有添加进去,最后输入s2是否在集合当中?
分析:
按道理来说,s1和s2在栈内存中是两个变量分别指向了在堆内存中存储的也是两个对象,只不过这两个对象同时指向了 "123" 在常量池中的地址而已,怎么地集合中都不能包含s2啊?
下边我们来看下contains源码:

public class lxc {
    public static void main(string[] args) {
        collection r = new arraylist();
        string s1 = new string("123");
        r.add(s1);
        string s2 = new string("123");
        system.out.println(r.contains(s2)); // true
    }
}

contains()源码:

参数o是调用contains()方法传递的参数,内部调用了indexof(),而indexof方法内部调用了indexofrange方法,在这个方法中会去获取集合中的每一个元素,然后通过equals() 方法来判断传递的参数与集合中的元素是否相等,我们传的参数是字符串,而字符串的equals()方法在源码中已经被重写了,只要字符串值相等就想等,实际判断的是:s1.equals(s2), 结果相等,返回元素在集合中的索引,而索引一定 >= 0,所以返回true!
其实调用contains() 方法,内部是调用equals()方法来判断的!!!!!!!!!!!!!!!!

在Java中Collection的一些常用方法总结

例二:

下边知道为什么返回false了吧,person类的eqauls() 方法继承的是object对象上的,所以没有重写equals() 方法的两个对象比较自然返回false了。

public class lxc {
    public static void main(string[] args) {
        collection r = new arraylist();
        person p1 = new person("lxc", 20);
        r.add(p1);
        person p2 = new person("lxc", 20);
        system.out.println(r.contains(p2));  // false
    }
}
class person{
    string name;
    int age;
    public person(string name, int age) {
        this.name = name;
        this.age = age;
    }
}

我们来重写下person对象的eqauls() 方法:

public class lxc {
    public static void main(string[] args) {
        collection r = new arraylist();
        person p1 = new person("lxc", 20);
        r.add(p1);
        person p2 = new person("lxc", 20);
        system.out.println(r.contains(p2));  // true
    }
}
class person{
    string name;
    int age;
    public person(string name, int age) {
        this.name = name;
        this.age = age;
    }
    @override
    public boolean equals(object obj) {
        if(!(obj instanceof person)) return false;
        if(this == obj) return true;
        person o = (person) obj;
        if((this.name == o.name) && (this.age == o.age)) {
            return true;
        }
        return false;
    }

6、remove() 删除集合中某个元素

collection co = new arraylist();
co.remove(100);

****深入探究****

其实remove() 方法和contains() 方法类似,内部也是调用了equals() 方法,所以s1和s2相等,删除了s2等同于删除了s1。

public class lxc {
    public static void main(string[] args) {
        collection r = new arraylist();
        string s1 = new string("abc");
        r.add(s1);
        string s2 = new string("abc");
        boolean res = r.remove(s2);
        system.out.println(res); // 删除成功了
        system.out.println(r.size()); // 0
    }
}

remove源码:
获取集合中的每一个元素,使用equals() 方法判断是否相等,如果相等调用fastremove方法删除元素。

在Java中Collection的一些常用方法总结

7、isempty() 判断集合是否为空 true、false

co.isempty();

8、object r = col.toarray() 把集合转数组

9、iterator 迭代器对象 (重点)

xxx.iterator( ); 获取迭代器。
collection h = new hashset();
iterator r = h.iterator() 获取iterator对象,目的遍历数组  r迭代器对象 - 负责迭代集合当中的元素。

r迭代器对象中的方法:
(1)boolean hasnext()如果仍有元素可迭代,则返回true;
(2)object next() 返回迭代的下一个元素。
(3)void remove() 没返回,删除集合中的元素

public class lxc {
    public static void main(string[] args) {
        collection h = new hashset();
        h.add(1);
        h.add(2);
        h.add(new object());
        // 获取迭代器
        iterator r = h.iterator();
        while(r.hasnext()) {
            object res = r.next();
            system.out.println(res);
        }
    }
}
public class lxc {
    public static void main(string[] args) {
        collection c = new arraylist();
        iterator i = c.iterator();
        c.add(1);
        c.add(2);
        iterator i1 = c.iterator();
        while(i1.hasnext()) {
            object r = i1.next();
            i1.remove();
            system.out.println(r);
        }
        system.out.println(c.size()); // 0
    }
}

****重点****

当集合的结构发生改变的时候,迭代器必须重新获取,如果还是以前老的迭代器,会出现异常。
下边集合的结构发生了改变,结果报错:

// 报错:java.base/java.util.arraylist$itr.checkforcomodification
public class lxc {
    public static void main(string[] args) {
        collection c = new arraylist();
        iterator i = c.iterator();
        c.add(1);
        c.add(2);
        while(i.hasnext()) {
            object r = i.next();
            system.out.println(r);
        }
    }
}

修改:

public class lxc {
    public static void main(string[] args) {
        collection c = new arraylist();
        iterator i = c.iterator();
        c.add(1);
        c.add(2);
        iterator i1 = c.iterator();
        while(i1.hasnext()) {
            object r = i1.next();
            system.out.println(r);
        }
    }
}

到此这篇关于在java中collection的一些常用方法总结的文章就介绍到这了,更多相关java collection常用方法内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!