如何在scala中将类型作为参数传递?

时间:2012-09-04 21:37:26

标签: scala reflection

我正在努力弄清楚如何在scala中存储或传递类型。

我想要达成的目标是这样的:

abstract class Foo( val theType : type )
object Foo{
   case object Foo1 extends Foo(String)
   case object Foo2 extends Foo(Long)     
}

所以在某些时候我可以这样做:

theFoo match{
   case String => "Is a string"
   case Long => "Is a long"
}

并且在获得能够投射它的对象时:

theFoo.asInstanceOf[Foo1.theType]

这可能吗?如果可能,是一个很好的方法吗?我最终想要实现的是为字节流处理编写伪模式。例如,如果我有一个模式Array(Foo1,Foo1,Foo2,Foo3,Foo1)我可以解析抱怨该模式的字节数组,如果在某些时候我有不同的字节流,我可以编写一个新模式Array(Foo3, Foo4, Foo5)而无需重新实现解析逻辑。

此致


按要求编辑

假设我有一个名为Command1的数组[Byte] = A973928CB3883FB123

此字节中的数据固定在位置和长度上。换句话说,我知道1-4位是例如一个小日期,5-9是客户的名字等等。

我想要的是编写单个解析函数,该函数仅将parammeter作为模式,并返回模式中每个参数的实际值。

trait Command{

  //This is implemented in every command
  val schema : List[Tuple[String,Int,Int,Type]]  //Position,Size,DataType

  def parse() : List[Tuple[String,Int,Int,Type,Any]] = schema.map(//match using the type)
}

class Command1 extends Command {
  override val schema = List[Tuple("theName",0,10,String),Tuple("myType",10,12,MyType),Tuple("theId",13,20,Long)]
  val theActualName = parse().find(_._1 == "theName")._5.asInstanceOf[String] //I would like to avoid this cast

}

我希望这能澄清我想要做的事情。

2 个答案:

答案 0 :(得分:3)

您可以使用Scala 2.10获取类型作为值(当它出现时)。在此之前,您可以获得的最好的是类(例如classOf[String]),但这会丢失任何类型参数。

即使使用Scala 2.10,您也会遇到一些严重的限制。请参阅我最近的blog post示例。

答案 1 :(得分:0)

您无法在变量中存储类型。而且您也不能简单地将字节流强制转换为类型。你可以做的是使用像protobuf这样的序列化库。你的用例究竟是什么?你从哪里获得数据?它也是一个java / scala应用程序吗?如果你知道你想要做什么,可能会更容易帮助你。