vote up 2 vote down star
1

I know in Groovy you can invoke a method on a class/object using a string. For example:

Foo."get"(1)
  /* or */
String meth = "get"
Foo."$meth"(1)

Is there a way to do this with the class? I have the name of the class as a string and would like to be able to dynamically invoke that class. For example, looking to do something like:

String clazz = "Foo"
"$clazz".get(1)

I think I'm missing something really obvious, just am not able to figure it out.

Thanks.

flag
classes dont get "invoked" - only methods. What is it exactly that you want to invoke? do you want to do something like MyOwnClass.static_property()? or myInstanceOfClass.methodName()? – Chii Feb 23 at 12:49
My guess is that he wants to invoke a static method on a class. – Aaron Digulla Feb 23 at 12:52
I want to invoke a static method on a class, a class I that I don't know until run time. I know the Java way is to use Class.forName, was just curious if there was a Groovy way to do this like their is for methods. – John Wagenleitner Feb 23 at 16:18

2 Answers

vote up 1 vote down check

Try this:

def cl = Class.forName("org.package.Foo")
cl.get(1)

A little bit longer but should work.

If you want to create "switch"-like code for static methods, I suggest to instantiate the classes (even if they have only static methods) and save the instances in a map. You can then use

map[name].get(1)

to select one of them.

[EDIT] "$name" is a GString and as such a valid statement. "$name".foo() means "call the method foo() of the class GString.

link|flag
I was hoping to find out if there was a "Groovy" way of doing Class.forName, similar to how they made reflection on methods so easy. I do appreciate your answer and suspect that this might be the only way. – John Wagenleitner Feb 23 at 16:20
@John: No, that's not possible. I asked on the Groovy ML. You have to call Class.forName() because "$name" is a GString and Groovy doesn't try to be smart about the contents of the variable "name". – Aaron Digulla Feb 23 at 16:37
@Aaron - thanks, I read the thread on the Groovy ML and that just the info I was looking for. – John Wagenleitner Feb 24 at 0:58
vote up 6 vote down

As suggested by Guillaume Laforge on Groovy ML,

("Foo" as Class).get(i)

would give the same result.

I've tested with this code:

def name = "java.lang.Integer"
def s = ("$name" as Class).parseInt("10")
println s
link|flag
@chanwit - thanks for the example it was very helpful. – John Wagenleitner Feb 24 at 1:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.