This page is no longer maintained — Please continue to the home page at www.scala-lang.org

passing a Class as value (java vs scala)

1 reply
Marune
Joined: 2008-10-01,
User offline. Last seen 3 years 20 weeks ago.
.hmmessage P { margin:0px; padding:0px } body.hmmessage { font-size: 10pt; font-family:Verdana }
Hi,

In Java, I can do something like ... aclass.getConstructor(AnotherClass.class), what would be the simplest equivalent in Scala ?
 
I know I can do it like this : aclass.getConstructor(Class.forName("AnotherClass"))
 
Thanks,

S.


Alex Cruise
Joined: 2008-12-17,
User offline. Last seen 2 years 26 weeks ago.
Re: passing a Class as value (java vs scala)

Skeptic 2000 wrote:
> In Java, I can do something like ...
> aclass.getConstructor(AnotherClass.class), what would be the simplest
> equivalent in Scala ?
>
> I know I can do it like this :
> aclass.getConstructor(Class.forName("AnotherClass"))
aclass.getConstructor(classOf[AnotherClass])

-0xe1a

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland