Home »
Java programming language
Java Collections synchronizedCollection() Method with Example
Collections Class synchronizedCollection() method: Here, we are going to learn about the synchronizedCollection() method of Collections Class with its syntax and example.
Submitted by Preeti Jain, on February 07, 2020
Collections Class synchronizedCollection() method
- synchronizedCollection() method is available in java.util package.
- synchronizedCollection() method is used to return the synchronized view of the given collection.
- synchronizedCollection() method is a static method, so it is accessible with classname and if we try to access the method with class object then we will not get an error.
- synchronizedCollection() method does not throw an exception at the time of returning synchronize collection.
Syntax:
public static Collection synchronizedCollection(Collection co);
Parameter(s):
- Collection co – represents the collection to be viewed in a synchronized collection.
Return value:
The return type of this method is Collection, it returns synchronized view of the given collection.
Example:
// Java program is to demonstrate the example of
// synchronizedCollection() method of Collections
import java.util.*;
public class SynchronizedCollectionOfCollections {
public static void main(String args[]) {
// Instatiates a array list object
List < Integer > arr_l = new ArrayList < Integer > ();
// By using add() method is to add
// objects in an array list
arr_l.add(10);
arr_l.add(20);
arr_l.add(30);
arr_l.add(40);
arr_l.add(50);
// Display ArrayList
System.out.println("Array List: " + arr_l);
// By using SynchronizedCollection() method is to
// represent the array list in synchronized view
Collection co = Collections.synchronizedCollection(arr_l);
// Display Synchronized ArrayList
System.out.println("Collections.synchronizedCollection(arr_l): " + arr_l);
}
}
Output
Array List: [10, 20, 30, 40, 50]
Collections.synchronizedCollection(arr_l): [10, 20, 30, 40, 50]