VOOZH about

URL: https://www.geeksforgeeks.org/java/list-retainall-method-in-java-with-examples/

⇱ List retainAll() Method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

List retainAll() Method in Java with Examples

Last Updated : 2 Jan, 2019
This method is used to retain all the elements present in the collection from the specified collection into the list. Syntax:
boolean retainAll(Collection c)
Parameters: This method has only argument, collection of which elements are to be retained in the given list. Returns: This method returns True if elements are retained and list changes. Below programs show the implementation of this method. Program 1:
Output:
[1, 3, 5, 7, 9]
[3, 5]
Program 2: Below is the code to show implementation of list.retainAll() using Linkedlist.
Output:
[10, 30, 50, 70, 90]
[30, 50]
Reference: Oracle Docs
Comment