ruby – 用attr_accessor动态创建类属性

前端之家收集整理的这篇文章主要介绍了ruby – 用attr_accessor动态创建类属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Ruby中,有没有办法动态地向实例添加一个实例变量?例如:
class MyClass

  def initialize
    create_attribute("name")
  end 

  def create_attribute(name)
    attr_accessor name.to_sym
  end

end

o =  MyClass.new
o.name = "Bob"
o.name

解决方法

一种方法(还有其他的)是使用instance_variable_set和instance_variable_get:
class Test
    def create_method( name,&block )
        self.class.send( :define_method,name,&block )
    end

    def create_attr( name )
        create_method( "#{name}=".to_sym ) { |val| 
            instance_variable_set( "@" + name,val)
        }

        create_method( name.to_sym ) { 
            instance_variable_get( "@" + name ) 
        }
    end
end

t = Test.new
t.create_attr( "bob" )
t.bob = "hello"
puts t.bob
原文链接:https://www.f2er.com/ruby/266959.html

猜你在找的Ruby相关文章