VOOZH about

URL: https://www.geeksforgeeks.org/java/copyonwritearraylist-contains-method-in-java/

⇱ CopyOnWriteArrayList contains() method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

CopyOnWriteArrayList contains() method in Java

Last Updated : 11 Jul, 2025
The contains(E e) method of CopyOnWriteArrayList checks if a given element is present in the list or not. If the element atleast occurs one time, then the function returns true, else it returns false. Syntax:
public boolean contains(Object o)
Parameters: The function accepts a single mandatory parametero which specifies the element whose appearance is to be checked in the list. Return Value: The function returns true if the element is present atleast one time in the list, else it returns false. Below programs illustrate the above function: Program 1:
Output:
CopyOnWriteArrayList: [32, 67, 98, 100]
100 is present in the list
20 is not present in the list
Program 2:
Output:
CopyOnWriteArrayList: [gopal, gfg, jgec, sudo]
'gfg' is present in the list
'best' is not present in the list
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CopyOnWriteArrayList.html#contains-E-
Comment