Javatpoint Logo
Javatpoint Logo

Java IdentityHashMap putAll() method

The putAll(Map<? extends K, ? extends V> m) method of the Java IdentityHashMap class is used to copy all the key-value pairs from the specified Map to the calling IdentityHashMap.

Syntax

Return

m - Map from which key-value pairs are to be copied

Example 1

Test it Now

Output:

{Java=1, the=3, language=6, programming=5, best=4, is=2}
{}
{Java=1, the=3, language=6, programming=5, best=4, is=2}

Example 2

Test it Now

Output:

{1=Student@70dea4e, 3=Student@5c647e05, 2=Student@33909752, 4=Student@55f96302}
{}
{1=Student@70dea4e, 3=Student@5c647e05, 2=Student@33909752, 4=Student@55f96302}



Help Others, Please Share

facebook twitter pinterest