World's best explanation 👌💯 highlight is you have explained with the debugger mode no one will explain like this. While I'm writing the codes and debugging expanded the hashtable there is an lot of nulls available but now I got to know thes reason. Thanks for your explanation 👍
@naveenautomationlabs3 жыл бұрын
Glad that you liked it 🙂
@kumarnavit93553 жыл бұрын
Best of all the explanations available over youtube
@shashankjain97042 жыл бұрын
Thank you so much for this video. I was studying this topic for many days. Now, finally the internal working got cleared.
@dushyag33033 жыл бұрын
Clear explanation.. looked at several sites never understand this clearly Thank you 🙏
@arvindhr.a23153 жыл бұрын
First time watching a video with such an explanation, Excellently explained sir ! Thanks Much.
@seekersofwisdom852 жыл бұрын
Its a very good video. I was searching for a good one. Finally. Thanks Man.
@amitbhattacharya3563 жыл бұрын
Flawless explanation. Thanks for this video, I liked the way how you have shown with debugger mode on. I am lucky that youtube has suggested me this video.
@varunbe092 жыл бұрын
Very well explained . Today I attended interview for amazon austin location senior software engineer, and they asked me this question.
@syedjami40333 жыл бұрын
best explanation on the internet
@KavithaKukatla Жыл бұрын
Wonderful explanation..Thank you so much. Please provide more video's which will be very helpful
@PrakashPradhan-lo4cv2 жыл бұрын
wonderful explanation👌👌
@socialmedia4344 жыл бұрын
Hi Naveen, Can 2 keys have the same Hashcode? When they have the same index collision occurs. What happens when they have the same Hashcode. also @18:58 when you said peter and Naveen have same Hashcode did u mean they have same index?
@sagar1691 Жыл бұрын
Brilliant , Wish every technical topic in any stream have these kind of videos to explain in details... Looking forward to more videos like these.
@naveenautomationlabs Жыл бұрын
Glad you liked it
@navdeepupadhyay59843 жыл бұрын
Thanks, Naveen for the deep explanation.
@learningisgrowinglig2 жыл бұрын
The main thing to explain here was how hashset avoids null keys and how it is synchronized. Other than that it was good
@akash-r1t2r3 күн бұрын
very nice explanation sir with practical
@vinayakthorat72313 жыл бұрын
Thanks Naveen!
@vinaysharma5303 жыл бұрын
Okay sir thank you Your explanation is very good👌
@akshaysharma28413 жыл бұрын
great video. I watched your video on internal working of hastable as well . Seeing the video above, is it safe to say that internally both hashtable and hashmap work similarly with regards to collision as the data entry depends on the hashcode generated and the index being calculated? Would appreciate if you can clear my doubt.
@praveenkumaer45022 жыл бұрын
Excellent explanation
@shruthishru35532 жыл бұрын
wonderfully explained..thanks a lot :)
@bishalkumarmohanty37824 жыл бұрын
Important for Interview..Exceptional
@ajitbombe51683 жыл бұрын
Perfect explanation ! thank you :)
@ahmadreza75082 жыл бұрын
Thank you so much for this video
@EternalTwilight293 жыл бұрын
Hi Naveen, do we have threshold value restriction in HashTable also like hashMap ?
@ramyaraja94114 жыл бұрын
Thanks for this video Naveen.. Well explained..
@naveenautomationlabs4 жыл бұрын
My pleasure
@shriramnirmal55353 жыл бұрын
Very helpful video, I have a small confusion , can hash code be same for two different key values , because even in collision while using get method on same index the hash codes seems different , I am bit confused with the same hash code problem , can you please clarify it
@rajeshyadav-cw6vc Жыл бұрын
Thank you sir👌🙏
@velanc9024 жыл бұрын
Nice one Naveen.Thanks for this video. Waiting for more :).
@naveenautomationlabs4 жыл бұрын
more videos will be there. I'll make you guys perfect in Java Collections.
@sn2dk13 жыл бұрын
Thank you so much
@testinginsights-muktasharma4 жыл бұрын
Hi, can you please check the links in the description box? Looks like those are not working. Please let me know once you update it. I am more interested in knowing api(manual&automation)link please. Thank you!
@krishanuchakraborty35004 жыл бұрын
I don't understand why these beautiful videos of yours are not gaining traction as much as your Whiteboard or Selenium series...
@naveenautomationlabs4 жыл бұрын
Most of the people want to learn just Selenium, but not actual programming concepts. That's ok, these videos will always be there for you guys to learn. It will get traction eventually.
@pratikjain19374 жыл бұрын
Nice explained...
@krishanuchakraborty35004 жыл бұрын
@@naveenautomationlabs Thanks for your reply, yes I am sure they will gain traction, quality content always does👍🙏
@naveenautomationlabs4 жыл бұрын
@@pratikjain1937 Thank you...:)
@naveenautomationlabs4 жыл бұрын
@@krishanuchakraborty3500 Thanks for your words. Keep sharing these videos in your network.
@moulikavankam Жыл бұрын
Hi Naveen, Your videos are too good even for beginners. I have a doubt. In get method, will it use hashcode method or equals method to validate the key? Please clarify.
@letmehink1663 жыл бұрын
Great videos..In the interviews for the testing automation profile, will they also ask to write the code to show internal working of hashtable or hashmap, or just the concept explaination? Pls reply
@subhashreesahoo22334 жыл бұрын
Thanks... So important..
@naveenautomationlabs4 жыл бұрын
Glad that you liked it.
@yadneshtakalkar2753 жыл бұрын
beautifully explained
@rsundar813 жыл бұрын
Good Explaination.. Keep going..
@shashankvishwakarma9592 жыл бұрын
i have a doubt here while performing get operation, for get("Naveen") we only comapre 'hashValue' or only comapre 'key' ... and .equals is applicable in which scenario ie: for hashValue or for key ... thanks in advance !!
@karthickg99313 жыл бұрын
HI Naveen, Once the threshold is reached the linked list of Hashmap will be converted in to balanced binary tree similarly in Hashtable what is the threshold value and will it change to binary tree here as well, once the threshold is reached? Please clarify on this part. Thanks in advance :-)
@RakhiDhavale2 жыл бұрын
well explained
@xoda3452 жыл бұрын
Hi Naveen, between 18.03 to 18.12 you said that in case of collision, hashCode is same but there is no guarantee that it will be same. It can be same or different. Instead of hashCode shouldn't it be index like index should be same during collision?
@afrozalam98572 жыл бұрын
Hi Naveen, In case of internal implementation of Hashtable and HashMap, is there any difference?
@akashsingsarva71103 жыл бұрын
Nice work bro.
@blessyRelatable11 ай бұрын
Thanks
@nikhiltiwari9754 жыл бұрын
good one , sir :)
@adityaanand77833 ай бұрын
I have one doubt while doing get will this only do the matching on hashcode or it will apply equals method on key so that it will give us the actual key. Why this doubt is bcz if it will compare only hashcode then let's say on the same index there are some node which is having same hashcode then it will give us wrong value. Plz let me know if my understanding is wrong.
@jyotikoli60064 жыл бұрын
Sir hashtable and hashMap both create a linked list internally if there is any collision... So both work same???
@pratapjavasingh32393 жыл бұрын
One more doubt is related to the fail safe fail fast when my implementation collection classes like hashmap not threads safe then we caught the concurrent modification but if u are taking vector then it's threads safe again we caught the same exception when are performing read and write operation both at a time why
@joshbenjamin1100 Жыл бұрын
I'm not able to see the hash code in intelliJ the way you find it (I think you're in Eclipse); any pointers?
@bisht173 Жыл бұрын
What about equals method in case of collision..
@socialmedia4344 жыл бұрын
Hi Naveen @Naveen AutomationLabs can two different keys have the same hashcode. What happends in this case. Kindly explain. Thank you
@naveenautomationlabs4 жыл бұрын
Yes it can have the same hashcode for two different keys or objects. It will calculate same index and collision will happen.
@socialmedia4344 жыл бұрын
@@naveenautomationlabs Thanks Naveen. Also does the get() method use both hashcode() and equals(key) method to look for the key? or just equals() method to search for the key? Thank you
@shaleensudhakar83833 жыл бұрын
From Java 8 prospective there is change in the working of hash collision. in worst case scenario if all keys generating same hash code then the performance is decreased from O(1) to O(n). to solve this Java 8 replaces linked list(storing same hashcode keys) to binary tree when certain threshold increases.
@rahulbotcha94563 жыл бұрын
how did you put naveen key in the 4 index
@gauravvarma64834 жыл бұрын
Thanks a lot, Naveen Awesome explanation. I have one doubt. Suppose index 4 has ("India",10) and next time we are trying to add ("India",20) now the same hashcode and the same index will be generated so there is collission. Since it doesn't allow duplicate "India" will have which value 10 or 20? are we using equals() here?
@naveenautomationlabs4 жыл бұрын
Duplicate keys won't be accepted. It will take the latest value as 20 on key = india.
@gauravvarma64834 жыл бұрын
@@naveenautomationlabs got it. Thank you so much
@bogastocksstocks83662 жыл бұрын
Can you explain same for ConcurretHashMap and SynchronizedMap. thanks in advance.
@DurgaShiva75744 жыл бұрын
this is a very nice video..but please explain is there any difference in HashMap and Hashtable classes apart from versions of java in which they were included(as the internal working of both of them seems to be same) ..if yes..please explain...also please tell WHY Hashtable doesn't allow even 1 null key (or value as well),, whereas the hashmap does...????...can anybody please answer to these questions...thanks in advance
@naveenautomationlabs4 жыл бұрын
Refer this video: kzbin.info/www/bejne/iYnJpHV6idSXprs
@rithup24203 жыл бұрын
I have a question here, we have inserted naveen first and then Peter. So in debug mode I see Peter is inserted first and then naveen is inserted after Peter. How is this possible and explanation pls
@VikasSharma-hm6xt Жыл бұрын
what is the type of that array segment?
@pratapjavasingh32393 жыл бұрын
I have one doubt regarding the garabage collectors respect to the Hashmap so if u taking the weak Hashmap and ur reference variable as a null then garbage eligible for destroying the object as a null refrence but in same case if u taking hashmap then ur unrefrence object not eligible to garabage so here my question is that's why not dominated to respect to the Hashmap same as weakhashmap object
@akki79493 жыл бұрын
It working is same like hashmap. Only difference I found that number of bucket in hashmap is 16 and in hashtable is 11. And formula to calculate index is different.. this is the only difference? Pls reply
@arvindmd32802 жыл бұрын
Yes you are right
@akki79492 жыл бұрын
@@arvindmd3280 thnxxx
@akki79493 жыл бұрын
It wont store hashcode like it is done in hashMap??
@pratapjavasingh32393 жыл бұрын
One more doubt same as Hashmap why only one as null key and multiple null value alloweded and this kind of features not available in hashtable and it's possible then explained by use cases