enum ordinal_Java Enum ordinal()方法与示例

  • Post author:
  • Post category:java


enum ordinal

枚举类ordinal()方法

(

Enum Class ordinal() method

)


  • ordinal() method

    is available in

    java.lang

    package.


    ordinal()方法

    在java.lang包中可用。


  • ordinal() method

    is used to return the position of this enum constants is whatever defined in its enum declaration and the position of starting element of enum constant starts from 0.


    ordinal()方法

    用于返回此枚举常量的位置,无论其枚举声明中定义了什么,并且枚举常量的起始元素的位置均从0开始。


  • ordinal() method

    is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.


    ordinal()方法

    是一种非静态方法,只能通过类对象进行访问,如果尝试使用类名称访问该方法,则会收到错误消息。


  • ordinal() me