码迷,mamicode.com
首页 > 其他好文 > 详细

scala中枚举

时间:2015-08-01 23:24:57      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

scala没有从语法的角度来支持枚举,而是通过定义了一个接口Enumeration来支持的

object ExecutorState extends Enumeration{
  type ExecutorState = Value
  val LAUNCHING, LOADING, RUNNING, KILLED, FAILED, LOST, EXITED = Value
  def isFinished(state:ExecutorState):Boolean = {
    Seq(KILLED, FAILED, LOST, EXITED).contains(state)
  }
}

上面是spark中的一个例子,使用type来定义一个同名的类型, 一般就是枚举的类型.

Value的可以传递参数,有下面几种方法声明

protected final def Value : Enumeration.this.Value = { /* compiled code */ }
protected final def Value(i : scala.Int) : Enumeration.this.Value = { /* compiled code */ }
protected final def Value(name : scala.Predef.String) : Enumeration.this.Value = { /* compiled code */ }
protected final def Value(i : scala.Int, name : scala.Predef.String) : Enumeration.this.Value = { /* compiled code */ }

大致使用就这么多吧.如果有新的后面在编辑吧

scala中枚举

标签:

原文地址:http://www.cnblogs.com/gaoxing/p/4694753.html

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