How to remove element from ArrayList by checking its value?

后端 未结 11 1217
一整个雨季
一整个雨季 2020-12-01 03:47

I have ArrayList, from which I want to remove an element which has particular value...

for eg.

ArrayList a=new ArrayList         


        
11条回答
  •  佛祖请我去吃肉
    2020-12-01 04:12

    Use a iterator to loop through list and then delete the required object.

        Iterator itr = a.iterator();
        while(itr.hasNext()){
            if(itr.next().equals("acbd"))
                itr.remove();
        }
    

提交回复
热议问题