码迷,mamicode.com
首页 > 编程语言 > 详细

Java Enum枚举

时间:2014-06-26 08:17:17      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

1、代码

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.Nokia;
     System.out.println("The ordinal is = " + ret.ordinal());
     System.out.println("MobileName = " + ret.name());                      
   }
}

2、运行结果

bubuko.com,布布扣

Java Enum枚举,布布扣,bubuko.com

Java Enum枚举

标签:style   class   blog   code   java   http   

原文地址:http://blog.csdn.net/jltxgcy/article/details/34481729

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!