Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class Player with some fields:

String name;
Point position;
Action action;

The 'name' field is sort of a key, there cannot be 2 players with the same name. So it seems to me they are equals if the 'name' (probably case ignored) is the same. So do I use the String.equalsIgnoreCase(String) only or do I check the other fields as well?

1) Should I check more than the name field in the equals method of Player?

2) Should I throw an error in the equals method if the other fields are not the same?

3) And is it wise to check that one field only for subclasses, because even in subclasses the same name, indicates the same player, or should I choose another method for comparing this? Example:

class MovingPlayer extends Player{
    Point destination;

So the 'name' field is still the key (something like an inter-subclass key).

Thanks in advance, NelttjeN

share|improve this question

1 Answer

up vote 2 down vote accepted
  1. You should ask yourself the question -- is it possible for two objects with the same name property and two different position properties to exist in your application? If that is true, then you should implement the equals method to use all relevant fields.

  2. You dont throw an error in the equals method. You return true or false.

  3. Your subclasses can override the equals method. In that overridden method, you can check for superclas equals and only if they are equal, you continue with additional checking.

share|improve this answer
1) They cannot exist or should never be compared(it can exist if one is copied to draw while the other is edited by another thread, but the copy is deleted after the draw) but if this should happen this is an error in my code, hence question 2. – Tjen Wellens Jul 25 '11 at 18:45
3) The idea is that subclasses can contain extra info of a Player like a Point destination; or something. but it is again the same 'player' (not really player but player_sub) – Tjen Wellens Jul 25 '11 at 18:48
@NelttjeN -- the equals method cannot throw an exception. You're not allowed to. It override Object equals so your method signature must match. As for your second point above, if that's the case, then you dont have to override the equals method in subclass. – Kal Jul 25 '11 at 18:58
I forgot about the necessity of a throw to be declared in the method. Thank you. – Tjen Wellens Jul 25 '11 at 19:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.