Java Collections checkedSet() MethodThe checkedSet() is an inbuilt method of Java Collections class. This method is used to get a dynamically typesafe view of the specified Set. SyntaxFollowing is the declaration of checkedSet() method: Parameter
ReturnsThe checkedSet() method automatically returns a dynamically typesafe view of the specified Set in the ascending order. ExceptionsClassCastException Compatibility VersionJava 1.5 and above Example 1Test it NowOutput: Type safe view of the Set is: [Hindi100, JavaTpoint, JavaTraining, SSSIT] Example 2Test it NowOutput: The view of the Set is: [500, 900, 1100, 2200] Example 3Test it NowOutput: Dynamic type safe view of Set is: [1800, 1500, 1100] Exception in thread "main" java.lang.ClassCastException: Attempt to insert class java.lang.String element into collection with element type class java.lang.Integer at java.base/java.util.Collections$CheckedCollection.typeCheck(Collections.java:3038) at java.base/java.util.Collections$CheckedCollection.add(Collections.java:3081) at myPackage.CollectionCheckedSetExample3.main(CollectionCheckedSetExample3.java:12) 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