- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
A Tour of Scala: Predefined function classOf
Created by admin on 2008-07-05.
Updated: 2010-09-27, 13:10
The predefined function classOf[T]
returns a runtime representation of the Scala class type T. The following Scala code example prints out the runtime representation of the args
parameter:
object ClassReprTest { abstract class Bar { type T <: AnyRef def bar(x: T) { println("5: " + x.getClass()) } } def main(args: Array[String]) { println("1: " + args.getClass()) println("2: " + classOf[Array[String]]) new Bar { type T = Array[String] val x: T = args println("3: " + x.getClass()) println("4: " + classOf[T]) }.bar(args) } }
Here is the output of the Scala program:
1: class [Ljava.lang.String; 2: class [Ljava.lang.String; 3: class [Ljava.lang.String; 4: class [Ljava.lang.String; 5: class [Ljava.lang.String;