How to remove element from ArrayList by checking its value?

后端 未结 11 1202
一整个雨季
一整个雨季 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:04

    use contains() method which is available in list interface to check the value exists in list or not.If it contains that element, get its index and remove it

提交回复
热议问题