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

2.8 dynamic instantiation and invocation

1 reply
noespam
Joined: 2009-10-21,
User offline. Last seen 42 years 45 weeks ago.

How to instantiate a class and invoke method dynamically?

class Foo {
def index():String = "inside index"
}

I looked on StackOverflow and the suggestion for Scala 2.8 is:

import reflect.Invocation._

val s:String = (new Foo) oo 'index

Seems to work, but I don't know the class ahead of time. I have a substring "Foo" which is parsed from a url string.

Johannes Rudolph
Joined: 2008-12-17,
User offline. Last seen 29 weeks 19 hours ago.
Re: 2.8 dynamic instantiation and invocation

You may create Symbols (like 'index) at runtime with Symbol("index")
or any other string.

Of course, the usual caveat emptor for using dynamical method
invocation in a statically typed language applies here as well...

On Wed, Oct 21, 2009 at 4:58 AM, first last wrote:
> How to instantiate a class and invoke method dynamically?
>
> class Foo {
>  def index():String = "inside index"
> }
>
> I looked on StackOverflow and the suggestion for Scala 2.8 is:
>
> import reflect.Invocation._
>
> val s:String = (new Foo) oo 'index
>
> Seems to work, but I don't know the class ahead of time. I have a substring "Foo" which is parsed from a url string.
>
>
>
>

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