Home  >  Article  >  Java  >  Why does java use enumerations?

Why does java use enumerations?

藏色散人
藏色散人Original
2019-05-22 11:24:284435browse

Recently I discovered that there are a lot of ways to use int enumeration in the company's code, and I also saw some ways to use enum for enumeration. I was very curious about this, conducted research, and then wrote this article to summarize why we should use enum.

Why does java use enumerations?

#Why should Java use enumerations?

Suppose there are now two order types: reservation orders and non-reservation orders.

Requirement 1: The method submitOrder performs different processing according to different order types.

Requirement 2: Set the order type to an object: OrderResult.

The following are implemented using two enumeration methods.

int enumeration

class IntEnumExample{
private static final PRE_ORDER = 1;
private static final NOT_PRE_ORDER = 2;
public void submitOrder(int orderType, OrderResult orderResult){
    orderResult.setType(orderType);
    if(orderType == PRE_ORDER){
        do something to process preOrder
    }else if(orderType == NOT_PRE_ORDER){
        do something to process other order
    }
}
public static void main(String [] args){
    IntEnumExample example = new IntEnumExample();
    //passing wrong type to the method, however, no compile error and runtime exception here, the bug is hard to be discerned.
    example.submitOrder(3, orderResult);
}
}

As you can see from the above example, there are several disadvantages to using int enumeration:

1. The int enumeration does not perform type checking. You can pass in any int value to the submitOrder method above

2. The readability of the code is low. If there is no documentation or source code, you do not know the meaning of the value passed to submitOrder.

Not only that, just like the problem I found when I modified the sonar scanning code in the project before, many people did not define the int value as static final when using the int enumeration as in the above example. If you forget to define a variable as final, the value of the int enumeration can be modified. If you forget to define a variable as static, it may happen that the int value has not been initialized when using it.

In short, it will cause bugs.

Let’s see how to do the same thing using enum.

class IntEnumExample{
 private enum ORDER_TYPE {
        NOT_PRE_ORDER(1),PRE_ORDER(2);
        private final int value;
        private ORDER_TYPE(int value){
            this.value = value;
        }
    }
public void submitOrder(ORDER_TYPE orderType, OrderResult orderResult){
    orderResult.setType(orderType);
    if(orderType == ORDER_TYPE.PRE_ORDER){
        do something to process preOrder
    }else if(orderType == ORDER_TYPE.NOT_PRE_ORDER){
        do something to process other order
    }
}
public static void main(String [] args){
    IntEnumExample example = new IntEnumExample();
    //compiler will complain error here, if argument is not the type in the enum.
    example.submitOrder(ORDER_TYPE.PRE_ORDER, orderResult);
}
}

As you can see from the above code, enum elegantly solves the problem in the previous example.

1. The compiler will perform type checking on enum. If the type does not match, the compiler will directly report an error.

2. Compared with the method of directly passing int values ​​​​from int enumeration types, the way enum passes enum type objects makes the code more readable and the passed enumeration type is clear at a glance.

3. The object in the enum type itself is static final.

Important tip:

It is also worth mentioning that if you sometimes want to assign an int value to each enumeration type, you should use enum in the above example defined way.

private enum ORDER_TYPE {
       NOT_PRE_ORDER(1),PRE_ORDER(2);
       private final int value;
       private ORDER_TYPE(int value){
           this.value = value;
       }
   }

The nature of enum is also a class, so the method ORDER_TYPE(int value) is the constructor of this enumeration type. Therefore, each enumeration type needs to pass the corresponding value to the constructor during initialization, such as: PRE_ORDER(2).

In this case, if you want to get the int value corresponding to the enumeration type, you can get it through ORDER_TYPE.PRE_ORDER.value.

The usage of enum is mentioned separately because some people may directly use the ordinal() method in enum to directly realize the association between the enum type and the int type. The ordinal() method returns the ordinal number of the enum type when it was defined. For example, ORDER_TYPE.PRE_ORDER.value.ordinal() returns a value of 0. Therefore, it seems that obtaining the int value corresponding to the enumeration type can also be achieved through ORDER_TYPE.PRE_ORDER.value.ordinal() 1.

Don’t use the ordinal() method! Don't use the ordinal() method! Don't use the ordinal() method! Say important things three times, why?

Ordinal numbers are very unreliable and can be changed. Suppose one day the definition of ORDER_TYPE changes and several types need to be added, or the order in which NOT_PRE_ORDER and PRE_ORDER are accidentally changed, such as:

private enum ORDER_TYPE {
       PRE_ORDER,NOT_PRE_ORDER;
   }

This will cause serious bugs, which are difficult to find. There will be no errors during compilation or runtime.

So, don’t rely on the ordianl() method.

Related learning recommendations: java basic tutorial

The above is the detailed content of Why does java use enumerations?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What is url in javaNext article:What is url in java