if two references are having same hash codes,is that means
those are refering to same object?

Answers were Sorted based on User's Feedback



if two references are having same hash codes,is that means those are refering to same object?..

Answer / aparna

no.they need not b referin 2 same obj.if 2 references
pointng to same obj then also the hascode may same or maynt
same.its totally depends on JVM.

Is This Answer Correct ?    7 Yes 1 No

if two references are having same hash codes,is that means those are refering to same object?..

Answer / dheerendra

If two objects are same then on equals obj1.equals(obj2)
return true as well as the hashCode will also be same but if
the hashCode of two objects are same then it is not sure
that objects would point to same reference.

Is This Answer Correct ?    2 Yes 0 No

if two references are having same hash codes,is that means those are refering to same object?..

Answer / ravurivinod

Thank you Aparna
for your feed back

Is This Answer Correct ?    0 Yes 0 No

if two references are having same hash codes,is that means those are refering to same object?..

Answer / dimpu

thanks for ur answer aparna

Is This Answer Correct ?    0 Yes 0 No

if two references are having same hash codes,is that means those are refering to same object?..

Answer / rajender

i agree with anuradha answer.but we can implement hashcode
method.in case of strings they implemented hashcode

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Can you explain inner class.

0 Answers  


whays is mean by inner class?

4 Answers   HCL, IBM, TCS,


What is supplier in java?

0 Answers  


static inner classes means..?

1 Answers  


What is public static void main?

0 Answers  






Can an unreferenced object be referenced again?

0 Answers  


1).what is the difference between below examples String s="vijay"; String s=new String("vijay");

12 Answers   Mascon, Satyam, TCS,


Why declare Main() inside the class in java ?

0 Answers   HCL,


What is a "pure virtual" member function?

0 Answers   Amazon,


Is null in java?

0 Answers  


What is use of static in java?

0 Answers  


What is string immutability?

0 Answers  


Categories