vote up 5 vote down star
2

How can this line in Java be translated to Ruby:
String className = "java.util.Vector";
...
Object o = Class.forName(className).newInstance();

Thanks!

flag

3 Answers

vote up 15 vote down check

Object::const_get('String').new()

link|flag
1  
If you'd like to instantiate a class inside a module you just use the module instead of Object. MyCoolModule::Submodule.const_get('MyString').new – ba May 2 at 15:30
vote up 2 vote down
class_name = 'String'
eval(class_name).new

Simple eval of the class name.

link|flag
vote up 2 vote down

If you need to do this in a Rails project, there is also a helper that does this:

"String".constantize.new
link|flag

Your Answer

Get an OpenID
or

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