Java Collections checkedMap() MethodThe checkedMap() is an inbuilt method of Java Collections class. This method is used to get a dynamically typesafe view of the specified Map. If any attempt of insert mapping whose key or value has the wrong type, it will result in an immediate ClassCastException. SyntaxFollowing is the declaration of checkedMap() method: Parameter
ReturnsThe checkedMap() method returns a dynamically typesafe view of the specified Map. ExceptionsClassCastException Compatibility VersionJava 1.5 and above Example 1Test it NowOutput: Type safe view of the Map is: {A=11, B=12, C=13, V=14} Example 2Test it NowOutput: Map Element: {1=One, 2=Two, 3=Three} {1=One, 2=Two, 3=Three, Four=4} Example 3Test it NowOutput: Map content: {Rahul=3, Amit=4, Raj=1, JavaTpoint=2} Exception in thread "main" java.lang.ClassCastException: Attempt to insert class java.lang.Integer key into map with key type class java.lang.String at java.base/java.util.Collections$CheckedMap.typeCheck(Collections.java:3575) at java.base/java.util.Collections$CheckedMap.put(Collections.java:3621) at myPackage.CollectionCheckedMapExample3.main(CollectionCheckedMapExample3.java:13) Next TopicJava Collections Class |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India