Javatpoint Logo
Javatpoint Logo

Java IdentityHashMap remove() method

The remove(Object key) method of the Java IdentityHashMap class is used remove the linkage of the specified key, from the calling IdentityHashMap, if present.

Syntax

Parameters

key - Key whose linkage is to be removed.

Return

The previous value linked with the specified key, or null if there was no linkage.

Example 1

Test it Now

Output:

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

Example 2

Test it Now

Output:

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



Help Others, Please Share

facebook twitter pinterest