Answers:
在rails中,您可以执行以下操作:
clazz = 'ExampleClass'.constantize
在纯红宝石中:
clazz = Object.const_get('ExampleClass')
带有模块:
module Foo
class Bar
end
end
你会用
> clazz = 'Foo::Bar'.split('::').inject(Object) {|o,c| o.const_get c}
=> Foo::Bar
> clazz.new
=> #<Foo::Bar:0x0000010110a4f8>
Object.const_get('Foo::Bar')
将不起作用,而constantize
会。
clazz = 'Foo::Bar::Uber'
在Rails中非常简单:使用 String#constantize
class_name = "MyClass"
instance = class_name.constantize.new
试试这个:
Kernel.const_get("MyClass").new
然后循环遍历对象的实例变量:
obj.instance_variables.each do |v|
# do something
end
module One
module Two
class Three
def say_hi
puts "say hi"
end
end
end
end
one = Object.const_get "One"
puts one.class # => Module
three = One::Two.const_get "Three"
puts three.class # => Class
three.new.say_hi # => "say hi"
在ruby 2.0和可能的较早发行版中,Object.const_get
将递归地在诸如的名称空间上执行查找Foo::Bar
。上面的示例是提前知道名称空间的情况,它突出了const_get
可以直接在模块上调用而不是仅在上调用的事实Object
。
eval