web-dev-qa-db-ja.com

Scala caseクラスの名前を簡単に取得するにはどうすればよいですか?

与えられた:

case class FirstCC {
  def name: String = ... // something that will give "FirstCC"
}
case class SecondCC extends FirstCC
val one = FirstCC()
val two = SecondCC()

どうすれば入手することができますか "FirstCC" from one.nameおよび"SecondCC" from two.name

55
pr1001
def name = this.getClass.getName

または、パッケージなしで名前のみが必要な場合:

def name = this.getClass.getSimpleName

詳細については、 Java.lang.Class のドキュメントを参照してください。

83
Esko Luontola

ケースクラスのプロパティproductPrefixを使用できます。

case class FirstCC {
  def name = productPrefix
}
case class SecondCC extends FirstCC
val one = FirstCC()
val two = SecondCC()

one.name
two.name

N.B. scala 2.8に渡す場合、caseクラスの拡張は廃止されており、左右の親()を忘れないでください。

20
Patrick
class Example {
  private def className[A](a: A)(implicit m: Manifest[A]) = m.toString
  override def toString = className(this)
}
15
def name = this.getClass.getName
11
Rex Kerr

以下はScala関数であり、任意の型から人間が読める文字列を生成し、型パラメーターを再帰的に返します。

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]
}
6
eje