Scala:抽象类型模式 A 未选中,因为它是通过擦除消除的



我正在编写只能捕获特定类型异常的函数。

def myFunc[A <: Exception]() {
    try {
        println("Hello world") // or something else
    } catch {
        case a: A => // warning: abstract type pattern A is unchecked since it is eliminated by erasure
    }
}

在这种情况下,绕过jvm类型擦除的正确方法是什么?

你可以像这个答案一样使用ClassTag

但我更喜欢这种方法:

def myFunc(recover: PartialFunction[Throwable, Unit]): Unit = {
  try {
    println("Hello world") // or something else
  } catch {
    recover
  }
}

用法:

myFunc{ case _: MyException => }

使用ClassTag

import scala.reflect.{ClassTag, classTag}
def myFunc[A <: Exception: ClassTag](): Unit = {
  try {
    println("Hello world") // or something else
  } catch {
    case a if classTag[A].runtimeClass.isInstance(a) =>
  }
}

另请注意,通常您应该将Tryrecover方法一起使用:Try只会捕获NonFatal异常。

def myFunc(recover: PartialFunction[Throwable, Unit]) = {
  Try {
    println("Hello world") // or something else
  } recover {
    recover
  }.get // you could drop .get here to return `Try[Unit]`
}

对于每个类型检查(例如 case a: A ) JVM 需要相应的class对象来执行检查。 在您的情况下,JVM 没有类对象,因为A是一个变量类型参数。 但是,您可以通过将Manifest[A]隐式传递给myFunc来添加有关A的其他信息。 作为速记,您可以将: Manifest添加到A的类型声明中:

def myFunc[A <: Exception : Manifest]() {
    try {
        println("Hello world") // or something else
    } catch {
        case a: A => // warning: abstract type pattern A is unchecked since it is eliminated by erasure
    }
}

最新更新