在 Ruby 中使用重载括号 [] 访问变量

发布于 2024-08-14 22:56:33 字数 552 浏览 5 评论 0原文

嗨,我想做以下事情。我只是想重载 [] 方法以便访问实例变量...我知道,这根本没有多大意义,但我想这样做是出于一些奇怪的原因:P

它将是这样的...

class Wata

    attr_accessor :nombre, :edad

    def initialize(n,e)
        @nombre = n
        @edad   = e
    end

    def [](iv)
        self.iv
    end

end

juan = Wata.new('juan',123)

puts juan['nombre']

但这会引发以下错误:

override.rb:11:in `[]': undefined method 'iv' for # (NoMethodError)

我该怎么做?

编辑

我也找到了这个解决方案:

def [](iv)
    eval("self."+iv)
end

Hi i want to do the following. I simply want to overload the [] method in order to access the instance variables... I know, it doesn't make great sense at all, but i want to do this for some strange reason :P

It will be something like this...

class Wata

    attr_accessor :nombre, :edad

    def initialize(n,e)
        @nombre = n
        @edad   = e
    end

    def [](iv)
        self.iv
    end

end

juan = Wata.new('juan',123)

puts juan['nombre']

But this throw the following error:

overload.rb:11:in `[]': undefined method 'iv' for # (NoMethodError)

How can i do that?

EDIT

I have found also this solution:

def [](iv)
    eval("self."+iv)
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

世俗缘 2024-08-21 22:56:33

变量和消息位于不同的命名空间中。为了将变量作为消息发送,您需要将其定义为:(

def [](iv)
    send iv
end

如果您想通过访问器获取它)

def [](iv)
    instance_variable_get "@#{iv}"
end

(如果您想直接访问 ivar)

Variables and messages live in a different namespace. In order to send the variable as a message, you'd need to define it as either:

def [](iv)
    send iv
end

(if you want to get it through an accessor)

or

def [](iv)
    instance_variable_get "@#{iv}"
end

(if you want to access the ivar directly)

动听の歌 2024-08-21 22:56:33

尝试 instance_variable_get 代替:

 def [](iv)
     instance_variable_get("@#{iv}")
 end

try instance_variable_get instead:

 def [](iv)
     instance_variable_get("@#{iv}")
 end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文