00:03 Map provides a way to associate values with unique keys. 01:22 Using a map to store key-value pairs 02:40 Data types and class for implementing a hashmap 03:53 Map data structure in Java 05:01 Keys are unique, values can be the same 06:19 Print all values using a for loop 07:38 You can print all the values from a map using the get method. 08:55 Hash table and hash map are similar but hash table is synchronized while hash map is not.
@RaghavSaggu2 ай бұрын
I suggest to all viewers to check internal implementation of maps, these data structures are way different than they looks and not discussed even 1% in this video. Though this video gives nice information to start working with Maps.
@anant832120 күн бұрын
Can you suggest any videos for the implementation purpose ?
@kausigayokeshk31603 ай бұрын
00:03 Map provides a way to associate values with unique keys. 01:22 Using a map to store key-value pairs 02:40 Data types and class for implementing a hashmap 03:53 Map data structure in Java 05:01 Keys are unique, values can be the same 06:19 Print all values using a for loop 07:38 You can print all the values from a map using the get method. 08:55 Hash table and hash map are similar but hash table is synchronized while hash map is not. Crafted by Merlin AI.
@nuclear_works Жыл бұрын
You are doing a great job by saving millions of Student"s Neck. Thank you very much
@Mshagy02 Жыл бұрын
Thank you for this. this is the clearest video I've found on the topic
@vinayraut4843 Жыл бұрын
Thank you sir for making such great videos,ur explanations are perfect, I performed good in my practical exams because of uh only ❤️💯
@Edd_Elric Жыл бұрын
Thanks for all your content, very nice!
@neoness1268 Жыл бұрын
Good explanation 👌
@dustinhicks3329 Жыл бұрын
At 2:17 you clicked on the Map reference and it pulled up what looks like the java docs for the Map class. Is that an extension that you have installed?
@nenuanenenuane6645 Жыл бұрын
no u can just click on map java classes will open automatically if they are present
@jmitmandalia10 ай бұрын
Thank you Navin. This course is great. Can you please also tell me what is the tool you are using to draw the diagram, in colors, in these videos? That is best tonuse for all remote worker like, when work with clients.
@kirusanth Жыл бұрын
Just like Associative array in php right sir?
@Kramn-e8f Жыл бұрын
THANK YOU i was not understanding this very well
@THEREELCOMMUNITY Жыл бұрын
Thanks bud ❤
@jaypople8885 Жыл бұрын
Sir, What if you have 2 or more student of same name in this example? how can we add new one instead of updating previous one.
@Mshagy02 Жыл бұрын
Use a more discriptive key. for example use first and last name of the student
@VeluR-19935 ай бұрын
What if one key has multiple value. How to get the values. Please help.