Java IdentityHashMap values() method

Java IdentityHashMap values() method

Last Updated : 17 Mar 2025

The values() method of the Java IdentityHashMap class is used to get a collection view of all the values present in the calling IdentityHashMap.

Syntax

Return

A collection containing all the values present in the map

Example 1

Output:

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

Example 2

Output:

4
{[email protected], [email protected], [email protected], [email protected]}
[[email protected], [email protected], [email protected], [email protected]]

Next TopicJava-identityhashmap-size-method