abstract type pattern is unchecked since it is eliminated by erasure

前端 未结 2 1924
长情又很酷
长情又很酷 2020-12-10 01:10

Could someone tell me how can I avoid the warning in the code block below:

abstract class Foo[T <: Bar]{
  case class CaseClass[T <: Bar](t: T)
  def m         


        
2条回答
  •  不思量自难忘°
    2020-12-10 01:55

    You could use ClassTag (or TypeTag):

    import scala.reflect.ClassTag
    
    abstract class Foo[T <: Bar : ClassTag]{
      ...
      val clazz = implicitly[ClassTag[T]].runtimeClass
      def method1 = {
        case CaseClass(t) if clazz.isInstance(t) => println(t) // you could use `t.asInstanceOf[T]`
        case _ => 
      }
    }
    

提交回复
热议问题