This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
in case of Set and Maps does the hashcode and key have the same maening . what does the hash code gives . ps explain me with an example.
Manfred Leonhardt
Ranch Hand
Joined: Jan 09, 2001
Posts: 1492
posted
0
Hi Devesh, No. A hashcode relates to objects. A Set can have a hashcode and so can a Map. But the hashcode for the set or Map objects won't relate to the internals of the Set or Map. Each object contained in a Set or Map has its' own hashcode ... The key is a string used by Maps to directly access a stored object. There might be some internal correlation between object hashcodes and keys but we as API users are not privy to that information. As far as Java programming goes, Map keys and Object hashcodes are separate chapters of the same book ... Regards, Manfred.
nishesh chouhan
Ranch Hand
Joined: Nov 06, 2000
Posts: 37
posted
0
# hashcode if the reference x and y denote two different objects then the expression x.hashcode ()== y.hashcode() is always fasle the above quote is from khalid mughal page 299 Q 10.2 I think that it is right b'coz hashcode returns unique for every object but according to author it is not always right can anyone ps expalin me why is this so
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12268
1
posted
0
No! the statement: "if the reference x and y denote two different objects then the expression x.hashcode ()== y.hashcode() is always false " is incorrect. Although it is a programming objective to make hashcode generation create unique hashcodes, a hashcode is NOT guaranteed to be different. Look in the Javadocs for the hashCode method in java.lang.Object for a nice discussion of the desired properties of a hashcode. This discussion specifically addresses the above statement. Bill