• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Collection - Chap 7 (Maps) (Problem in Understanding an example in K&B SCJP 1.6)

 
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator



Output :
Dog key
New Dog Key
collection.Dog@35ce36
collection.Dog@757aef
null
null
New Dog Key
New Dog Key


Question
Object ref "d" is used as a key for the value "New Dog Key". the hashcode for object of class Dog,
is used as the length of variable "name".
As per the SCJP 1.6, Chap 7 , when the value of "name" for object ref "d" is changed to "magnolia" ie. d.name = "magnolia"; the object will be searched in a hash bucket other than that where the object was placed originally ie hash bucket returned when value of "name" was diego.

Hence, the System.out.println(m.get(d)); should return null!!
But, as you can see the code returns an output with value "new Dog Key".

I dont understand ?

 
Sheriff
Posts: 9708
43
Android Google Web Toolkit Hibernate IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Read this or this...
 
Ranch Hand
Posts: 64
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
be careful with function names
here you have hashcode() function, not hashCode(), as a result the program uses the default object hashCode() for d reference wich does not depend on any Dog field

In real life you can mark your overridden method by @Override annotation, wich will save you some nerve, but for exam we just have to be careful with such "typo's" in code
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic