I know that Java enums are compiled to classes with private constructors and a bunch of public static members. When comparing two members of a given enum, I've always used .equals(), e.g.

public useEnums(SomeEnum a)
{
    if(a.equals(SomeEnum.SOME_ENUM_VALUE))
    {
        ...
    }
    ...
}

However, I just came across come code that uses the equals operator == instead:

public useEnums2(SomeEnum a)
{
    if(a == SomeEnum.SOME_ENUM_VALUE)
    {
        ...
    }
    ...
}

I've been programming in Java for 5+ years, and I thought I understood difference between the two - but I'm still scratching my head at which one is more correct. Which operator is the one I should be using?

link|improve this question

1  
I just stumbled across a very similar question: stackoverflow.com/questions/533922/… – Matt Ball Dec 15 '11 at 14:35
feedback

5 Answers

up vote 84 down vote accepted

Both are technically correct. If you look at the source code for .equals(), it simply defers to ==.

I use ==, however, as that will be null safe.

link|improve this answer
4  
Personally, I dont like 'null safety' mentioned as a reason to use ==. – Nivas Nov 17 '09 at 18:13
15  
@Nivas: why not? Do you like worrying about the order of your arguments (which only applies to comparing constants from the left, as in Pascal's answer)? Do you like always checking that a value is not null before .equals()ing it? I know I don't. – Matt Ball Nov 17 '09 at 21:03
2  
@Carl Smotricz, equals will most likely be inlined by the JIT, so performance isn't an issue – Steve Kuo Nov 17 '09 at 23:19
5  
Keep in mind that when reading your code, the "==" may appear incorrect to the reader until he/she goes off and looks at the source for the type involved, then sees it's an enum. In that sense, it's less distracting to read ".equals()". – Kevin Bourrillion Nov 18 '09 at 8:48
3  
@Kevin - if you're not using an IDE that allows you to see types directly when viewing the source, you're cheating yourself - not an issue with a proper IDE. – MetroidFan2002 Nov 18 '09 at 15:26
show 1 more comment
feedback

Can == be used on enum?

Yes: enums have tight instance controls that allows you to use == to compare instances. Here's the guarantee provided by the language specification:

JLS 8.9 Enums

An enum type has no instances other than those defined by its enum constants.

It is a compile-time error to attempt to explicitly instantiate an enum type. The final clone method in Enum ensures that enum constants can never be cloned, and the special treatment by the serialization mechanism ensures that duplicate instances are never created as a result of deserialization. Reflective instantiation of enum types is prohibited. Together, these four things ensure that no instances of an enum type exist beyond those defined by the enum constants.

Because there is only one instance of each enum constant, it is permissible to use the == operator in place of the equals method when comparing two object references if it is known that at least one of them refers to an enum constant. (The equals method in Enum is a final method that merely invokes super.equals on its argument and returns the result, thus performing an identity comparison.)

This guarantee is strong enough that Josh Bloch recommends, that if you insist on using the singleton pattern, the best way to implement it is to use a single-element enum (see: Effective Java 2nd Edition, Item 3: Enforce the singleton property with a private constructor or an enum type; also Thread safety in Singleton)


What are the differences between == and equals?

As a reminder, it needs to be said that generally, == is NOT a viable alternative to equals. When it is, however (such as with enum), there are two important differences to consider:

== never throws NullPointerException

enum Color { BLACK, WHITE };

Color nothing = null;
if (nothing == Color.BLACK);      // runs fine
if (nothing.equals(Color.BLACK)); // throws NullPointerException

== is subject to type compatibility check at compile time

enum Color { BLACK, WHITE };
enum Chiral { LEFT, RIGHT };

if (Color.BLACK.equals(Chiral.LEFT)); // compiles fine
if (Color.BLACK == Chiral.LEFT);      // DOESN'T COMPILE!!! Incompatible types!

Should == be used when applicable?

Bloch specifically mentions that immutable classes that have proper control over their instances can guarantee to their clients that == is usable. enum is specifically mentioned to exemplify.

Item 1: Consider static factory methods instead of constructors

[...] it allows an immutable class to make the guarantee that no two equal instances exist: a.equals(b) if and only if a==b. If a class makes this guarantee, then its clients can use the == operator instead of the equals(Object) method, which may result in improved performance. Enum types provide this guarantee.

To summarize, the arguments for using == on enum are:

  • It works.
  • It's faster.
  • It's safer at run-time.
  • It's safer at compile-time.
link|improve this answer
3  
Nice answer but... 1. It works : agreed 2. it's faster : prove it for enums :) 3. It's safer at run-time : Color nothing = null; is IMHO a bug and should be fixed, your enum has two values, not three (see Tom Hawtin's comment) 4. It's safer at compile-time : OK, but equals would still return false. At the end, I don't buy it, I prefer equals() for the readability (see Kevin's comment). – Pascal Thivent May 30 '10 at 5:02
1  
@Pascal: I agree that the null argument is weak, because null is controversial to begin with (C.A.R. Hoare "billion dollar mistake" etc). See also my question: stackoverflow.com/questions/2887761/… // I do think the compile-time type compatibility check is significant and is much better than "silently failing" at run-time by returning false. I'm actually not concerned with speed advantage since it's not likely to be significant; I'm merely repeating what Bloch said. – polygenelubricants May 30 '10 at 5:07
1  
I admit my own argument "against" the compile-time check is also weak (and compile-time check is actually probably the best argument for == even if "silently fail" seems too strong to me). Regarding Bloch's point about speed, I'm of course not saying he's wrong, I'm just not convinced it applies for enums (and he wrote may). That's why I thought it was legitimate to challenge your pros a bit :) But you have my +1, it's still a nice answer. – Pascal Thivent May 30 '10 at 5:31
feedback

Using == to compare two enum values works because there is only one object for each enum constant.

On a side note, there is actually no need to use == to write null safe code if you write your equals() like this:

public useEnums(SomeEnum a)
{
    if(SomeEnum.SOME_ENUM_VALUE.equals(a))
    {
        ...
    }
    ...
}

This is a best practice known as Compare Constants From The Left that you definitely should follow.

link|improve this answer
Exactly - this is the whole point of using enum. – Grandpa Nov 17 '09 at 17:38
I do this when .equals()ing string values, but I still think that it's a crappy way to write null-safe code. I'd much rather have an operator (or a method, but I know that [null object].equals won't ever be null-safe in Java because of how the dot operator works) that's always null-safe, regardless of the order it's used in. Semantically, the "equals" operator should always commute. – Matt Ball Nov 17 '09 at 20:48
1  
Well, as Java doesn't have the Safe Navigation operator of Groovy (?.), I'll continue to use this practice when comparing to constants and, TBH, I don't find it crappy, maybe just less "natural". – Pascal Thivent Nov 17 '09 at 21:34
11  
A null enum is typically an error. You've got this enumeration of all possible values, and here's another one! – Tom Hawtin - tackline Nov 22 '09 at 21:00
feedback

In case of enum both are correct and right!!

link|improve this answer
feedback

Here is a crude timing test to compare the two:

import java.util.Date;

public class EnumCompareSpeedTest {

    static enum TestEnum {ONE, TWO, THREE }

    public static void main(String [] args) {

        Date before = new Date();
        int c = 0;

        for(int y=0;y<5;++y) {
            for(int x=0;x<Integer.MAX_VALUE;++x) {
                if(TestEnum.ONE.equals(TestEnum.TWO)) {++c;}
                if(TestEnum.ONE == TestEnum.TWO){++c;}              
            }
        }

        System.out.println(new Date().getTime() - before.getTime());
    }   

}

Comment out the IFs one at a time. Here are the two compares from above in disassembled byte-code:

 21  getstatic EnumCompareSpeedTest$TestEnum.ONE : EnumCompareSpeedTest.TestEnum [19]
 24  getstatic EnumCompareSpeedTest$TestEnum.TWO : EnumCompareSpeedTest.TestEnum [25]
 27  invokevirtual EnumCompareSpeedTest$TestEnum.equals(java.lang.Object) : boolean [28]
 30  ifeq 36

 36  getstatic EnumCompareSpeedTest$TestEnum.ONE : EnumCompareSpeedTest.TestEnum [19]
 39  getstatic EnumCompareSpeedTest$TestEnum.TWO : EnumCompareSpeedTest.TestEnum [25]
 42  if_acmpne 48

The first (equals) performs a virtual call and tests the return boolean from the stack. The second (==) compares the object addresses directly from the stack. In the first case there is more activity.

I ran this test several times with both IFs one at a time. The "==" is ever so slightly faster.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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