Login:  Password:    
forgot my password
sign up!
Search: 
 
  This post is part of:
    Online course(s):   
 Sun Certified Java Programmer 310-065

HashCode: Exam questions tests - Sun Certified Java Programmer 310-065 - Lesson 61 | Java courses

This video we will start with a question that tests on the use of equals() and hashCode() methods.

"

download the application please visit www.mrbool.com/player

Title: HashCode: Exam questions tests - Sun Certified Java Programmer 310-065 - Lesson 61

Duration:  16 minutes

Summary: In this video, we are continuing the discussion of the first exam set. We start with a question that tests on the use of equals() and hashCode() methods. You need to know that the equals() algorithm must be at least as precise as the hashCode() method. Then, we look at sorting an array of strings using the Comparator class. This class has a method named ‘compare()’. As the name implies, this method compares two objects to determine which one comes before the other. The array elements were compared using the second character of the word. In the question before last we look at a TreeSet. No matter how the elements are added to the TreeSet, they are sorted. In the final question, we discuss working with a HashMap. We have a method that mangles the elements in the map, and returns the value before the key. When we try to retrieve the elements one of them would return the correct value and the other would return null.

Methodology of the development of example: Good coding standard and simplified design to prepare for the Java programmer certification exam CX-310-065.

Technology Used: Java – Core Concepts.

Keywords: Class, object, hashCode, equals, length(), Comparator, compare(), TreeSet, Integer, HashMap.





Add a comment!
[Fechar]

Este post é fechado - você precisa ter acesso ao post para incluir um comentário.


Matthew Casperson
5/7/2012 10:0pm
Option D for question 52 is wrong
Take the follow object states:

o.length = 1
o.bal = 1
o.rate = 10

this.length = 1
this.bal = 10
this.rate = 1

Remember from the question that hashCode() returns length * bal;

For option D, both of these objects will be equals(), because length * bal * rate = 10. However, the two objects will return different hasCode().

o.hashCode() returns 1 (length 1 * bal 1 = 1)
this.hashCode() returns 10 (length 1 * bal 10 = 10)

One of the rules for the equals() and hashCode() methods is that two equal objects must have the same hashCode() value. So option D is  not valid.


Answer it
 
Matthew Casperson
5/7/2012 10:1pm
More details See http://www.ibm.com/developerworks/java/library/j-jtp05273/index.html#N10184 for details on the requirements for equals() and hashCode().

Answer it
 



 
Help us to improve! Give us your feedback:
Give your note to the technical content
10 9 8 7 6 5 4 3 2 1
Give your note to the post's learning
10 9 8 7 6 5 4 3 2 1
Is this post helpful?
Yes No


Ayad Boudiab
Experience: A total of 10 years experience in developing applications using C++, Java, C#, ASP.NET, and SQL Server. In addition to 6 years experience in teaching programming courses at a local college. Degree: B.S. Computer Science Location: Atla...


Go to author's Space


Post stats:
Favorited:
 0

Post actions:
[Close]
To have full access to this post (or download the associated files) you must have MrBool Credits.

  See the prices for this post in Mr.Bool Credits System below:

Individually – in this case the price for this post is US$ 2,00 (Buy it now)
in this case you will buy only this video by paying the full price with no discount.

Package of 10 credits - in this case the price for this post is US$ 1,00
This subscription is ideal if you want to download few videos. In this plan you will receive a discount of 50% in each video. Subscribe for this package!

Package of 50 credits – in this case the price for this post is US$ 0,33
This subscription is ideal if you want to download several videos. In this plan you will receive a discount of 83% in each video. Subscribe for this package!


> More info about MrBool Credits








mrbool.com
contact us   |   publish your post   |   buy credits

Copyright 2012 - all rights reserved to www.web-03.net