Enum values().length vs private field

后端 未结 4 1674
伪装坚强ぢ
伪装坚强ぢ 2020-12-08 13:12

I have enumeration like this:

public enum Configuration {
    XML(1),
    XSLT(10),
    TXT(100),
    HTML(2),
    DB(20);

    private final int id;
    pri         


        
相关标签:
4条回答
  • 2020-12-08 13:26

    I would recommend using values().length. This is far more elegant and the performance overhead versus using a constant will be negligable. Also, you eliminate the risk of the constant ever becoming out of step with the actual length of the enumeration.

    0 讨论(0)
  • 2020-12-08 13:36

    Another approach is to use a constant initialized on top of the values() method.

    public enum Colors {
        BLUE, GREEN, FUCHSIA;
        public static int length = Colors.values().length;
    }
    

    This way you have an automatically updated constant and still avoid that "values()" overhead.

    0 讨论(0)
  • 2020-12-08 13:43

    Using values().length will create a new copy of the array every time you call it. I sometimes create my own List (or set, or map, whatever I need) to avoid this pointless copying. I wouldn't hard-code it though... if you only need the size, I'd just use:

    private static final int size = Configuration.values().length;
    

    at the end. By the time that is evaluated, all the values will have been initialized. This avoids the DRY and inconsistency concerns raised in other answers.

    Of course, this is a bit of a micro-optimisation in itself... but one which ends up with simpler code in the end, IMO. Calling values().length from elsewhere doesn't express what you're interested in, which is just the size of the enum - the fact that you get at it through an array of values is incidental and distracting, IMO.

    An alternative to using values() is to use EnumSet.allOf().size() which for small enums will be pretty cheap - but again, it's not as readable as just having a size field.

    0 讨论(0)
  • 2020-12-08 13:46

    By storing the count you're violating the DRY principle, so unless you have a very good reason, you shouldn't.

    0 讨论(0)
提交回复
热议问题