目录

int ordinal()

描述 (Description)

java.lang.Enum.ordinal()方法返回此枚举常量的序号(它在枚举声明中的位置,其中初始常量的序数为零)。

声明 (Declaration)

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

public final int ordinal()

参数 (Parameters)

NA

返回值 (Return Value)

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

异常 (Exception)

NA

例子 (Example)

以下示例显示了java.lang.Enum.ordinal()方法的用法。

package com.iowiki;
import java.lang.*;
// enum showing Mobile prices
enum Mobile {
   Samsung(400), Nokia(250),Motorola(325);
   int price;
   Mobile(int p) {
      price = p;
   }
   int showPrice() {
      return price;
   } 
}
public class EnumDemo {
   public static void main(String args[]) {
      System.out.println("CellPhone List:");
      for(Mobile m : Mobile.values()) {
         System.out.println(m + " costs " + m.showPrice() + " dollars");
      }
      Mobile ret = Mobile.Samsung;
      System.out.println("The ordinal is = " + ret.ordinal());
      System.out.println("MobileName = " + ret.name());                      
   }
}

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

CellPhone List:
Samsung costs 400 dollars
Nokia costs 250 dollars
Motorola costs 325 dollars
The ordinal is = 0
MobileName = Samsung
↑回到顶部↑
WIKI教程 @2018