Java - 枚举 ordinal() 方法



描述

Java Enum ordinal() 方法返回此枚举常量的序数(在其枚举声明中的位置,其中初始常量被分配序数 0)。

声明

以下是 java.lang.Enum.ordinal() 方法的声明

public final int ordinal()

参数

返回值

此方法返回此枚举常量的序数。

异常

获取枚举的序数示例

以下示例演示了使用其引用的枚举的 ordinal() 方法的用法。

package com.tutorialspoint;

// enum showing topics covered under Tutorials
enum Tutorials {  
   Java, HTML, Python; 
}  
public class EnumDemo { 
   public static void main(String args[]) { 
      Tutorials t1, t2, t3;     
      t1 = Tutorials.Java; 
      t2 = Tutorials.HTML; 
      t3 = Tutorials.Python; 
    
      // returns the ordinal corresponding to an enum
      System.out.println(t1.ordinal()); 
      System.out.println(t2.ordinal()); 
      System.out.println(t3.ordinal()); 
   } 
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

0
1
2

获取枚举的序数示例

以下示例演示了使用其类型的枚举的 ordinal() 方法的用法。

package com.tutorialspoint;

// enum showing topics covered under Tutorials
enum Tutorials {  
   Java, HTML, Python; 
}  
public class EnumDemo { 
   public static void main(String args[]) {
    
      // returns the ordinal corresponding to an enum
      System.out.println(Tutorials.Java.ordinal()); 
      System.out.println(Tutorials.HTML.ordinal()); 
      System.out.println(Tutorials.Python.ordinal()); 
   } 
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

0
1
2
java_lang_enum.htm
广告