Donné:
case class FirstCC {
def name: String = ... // something that will give "FirstCC"
}
case class SecondCC extends FirstCC
val one = FirstCC()
val two = SecondCC()
Comment puis-je avoir "FirstCC"
de one.name
et "SecondCC"
de two.name
?
def name = this.getClass.getName
Ou si vous ne voulez que le nom sans le package:
def name = this.getClass.getSimpleName
Voir la documentation de Java.lang.Class pour plus d'informations.
Vous pouvez utiliser la propriété productPrefix
de la classe case:
case class FirstCC {
def name = productPrefix
}
case class SecondCC extends FirstCC
val one = FirstCC()
val two = SecondCC()
one.name
two.name
N.B. Si vous passez à scala 2.8 l'extension d'une classe de cas est obsolète, et vous ne devez pas oublier le parent gauche et droit ()
class Example {
private def className[A](a: A)(implicit m: Manifest[A]) = m.toString
override def toString = className(this)
}
def name = this.getClass.getName
Voici une fonction Scala qui génère une chaîne lisible par l'homme à partir de n'importe quel type, récursif sur les paramètres de type:
https://Gist.github.com/erikerlandson/78d8c33419055b98d701
import scala.reflect.runtime.universe._
object TypeString {
// return a human-readable type string for type argument 'T'
// typeString[Int] returns "Int"
def typeString[T :TypeTag]: String = {
def work(t: Type): String = {
t match { case TypeRef(pre, sym, args) =>
val ss = sym.toString.stripPrefix("trait ").stripPrefix("class ").stripPrefix("type ")
val as = args.map(work)
if (ss.startsWith("Function")) {
val arity = args.length - 1
"(" + (as.take(arity).mkString(",")) + ")" + "=>" + as.drop(arity).head
} else {
if (args.length <= 0) ss else (ss + "[" + as.mkString(",") + "]")
}
}
}
work(typeOf[T])
}
// get the type string of an argument:
// typeString(2) returns "Int"
def typeString[T :TypeTag](x: T): String = typeString[T]
}