我知道有些东西是基于Manifest的List [_]我已经传递给了一个方法,但是我需要知道列表是什么类型的项目。这些信息是存储在Manifest的某个地方吗?你可以把它拿出来吗?如果没有,有关如何解决这个问题的任何建议吗?
(基本上,我有一个Map [Manifest [_],Blah],其中Blah根据类类型处理案例。处理List [X]可以基于X组合,但我需要能够弄清楚是什么X是这样我可以从地图中获取它的Blah值。)
谢谢!
答案 0 :(得分:6)
我认为你正在寻找typeArguments
scala> manifest[List[Int]]
res1: Manifest[List[Int]] = scala.collection.immutable.List[Int]
scala> res1.typeArguments
res2: List[scala.reflect.Manifest[_]] = List(Int)
scala> res2.head
res3: scala.reflect.Manifest[_] = Int
scala> res3.erasure
res4: java.lang.Class[_] = int
答案 1 :(得分:5)
如果没有一段示例代码,很难告诉您该怎么做。所以根据你写的,我假设你得到一个A [B]作为参数。这应该是这样的:
def foo[A[B], B](x: A[B])(implicit outer: ClassManifest[A[B]], inner: ClassManifest[B]) = {
// your code here
}
答案 2 :(得分:1)
所以你有一个Manifest[List[T]]
,想要根据T
进行处理? <怎么样
def listType[T](m: Manifest[T]) =
if (m.erasure == classOf[List[_]]) m.typeArguments match {
case List(c) if c.erasure == classOf[Int] => "it's a List[Int]"
case List(c) if c.erasure == classOf[String] => "it's a List[String]"
case _ => "some other List"
} else "not a List"
scala> listType(implicitly[Manifest[List[Int]]])
res29: java.lang.String = it's a List[Int]