vote up 0 vote down star

what will be the implementation for

public int hashCode()
{
}

method in singleton class? Please do provide me the implementation

flag

0% accept rate
3  
How about "throw new UnsupportedOperationException()" :) – skaffman Jul 10 at 9:49

5 Answers

vote up 0 vote down

I don't want to repeat other answers here. So yes, if you are using a Singleton then Matthew's answer is what you want. Make sure you are not confusing singleton with just an immutable object. If you have an immutable object, then you will have to implement a hashCode() method.

Remember there is only ever at most one instance of a singleton. Therefore, the default hashCode is sufficient.

public class ImmutableNotSingleton {
    private final int x;
    public ImmutableNotSingleton(int x) { this.x = x; }

    // Must implement hashCode() as you can have x = 4 for one object,
    // and x = 2 of another
    @Override public int hashCode() { return x; }
}

If you were using an immutable, don't forget to override equals() if when you override hashCode().

link|flag
vote up 1 vote down

If you use the singleton ENUM pattern instead (Effective Java #??), you'll get hashCode and equals for free.

link|flag
vote up 3 vote down
public int hashCode() {
    return 42; // The Answer to the Ultimate Question of Life, The Universe and Everything
}
link|flag
vote up 10 vote down

Since there's only one object, you don't have to worry about making other, equal, objects have the same hashCode. So you can just use System.identityHashCode (i.e. the default).

link|flag
Ah a better idea indeed. More to the point. Thanks. +1 – Vinegar Jul 10 at 9:49
vote up 5 vote down

If it's a singleton, you don't need to provide an implementation, as it will be the same object instance wherever it's used. The default (System.identityHashCode(obj)) will be sufficient, or even just a constant number (eg 5)

link|flag
4  
I think 4 is the correct random number to return stackoverflow.com/questions/84556/… – drvdijk Jul 10 at 9:49
BTW, here we don't need a random number. It would be an overkill. :) – Vinegar Jul 10 at 10:05
4  
@Override public int hashCode() { return "huh?".length(); } – Tom Hawtin - tackline Jul 10 at 10:17

Your Answer

Get an OpenID
or

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