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

Thanks!

link|improve this question
feedback

2 Answers

up vote 25 down vote accepted
Object::const_get('String').new()
link|improve this answer
6  
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 – gaqzi May 2 '09 at 15:30
feedback

If you're using ActiveSupport (i.e. Rails), there is a method added to String that does this:

"String".constantize.new
link|improve this answer
feedback

Your Answer

 
or
required, but never shown