VOOZH about

URL: https://www.geeksforgeeks.org/java/weakhashmap-size-method-in-java/

⇱ WeakHashMap size() method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

WeakHashMap size() method in Java

Last Updated : 20 Jul, 2018
The java.util.WeakHashMap.size() method of WeakHashMap class is used to get the size of the map which refers to the number of the key-value pair or mappings in the Map. Syntax:
WeaK_Hash_Map.size()
Parameters: The method does not take any parameters. Return Value: The method returns the size of the map which also means the number of key-value pairs present in the map. Below programs illustrate the java.util.WeakHashMap.size() method: Program 1:
Output:
Initial Mappings are: {30=You, 15=4, 10=Geeks, 25=Welcomes, 20=Geeks}
The size of the map is 5
Program 2:
Output:
Initial Mappings are: {Welcomes=25, 4=15, You=30, Geeks=20}
The size of the map is 4
Note: The same operation can be performed with any type of Mappings with variation and combination of different data types.
Comment