Java IdentityHashMap clone() methodThe clone() method of the Java IdentityHashMap class is used to get a shallow copy of the calling IdentityHashMap, excluding the key-value pairs. SyntaxReturnA shallow copy of the calling Map. Example 1Test it NowOutput: {Java=1, the=3, language=6, programming=5, best=4, is=2} Example 2Test it NowOutput: {1=Student@70dea4e, 3=Student@5c647e05, 2=Student@33909752, 4=Student@55f96302}
Next Topicjava IdentityHashMap
|