当前位置:  开发笔记 > 编程语言 > 正文

Custom Struct方法无法设置struct成员

如何解决《CustomStruct方法无法设置struct成员》经验,为你挑选了1个好方法。

一个例子将解释这个问题:

Val = Struct.new(:value) do
  def inc 
    p value
    value = value + 1 
  end
end

v = Val.new(1)
v.inc

输出将是:

1
undefined method `+' for nil:NilClass (NoMethodError)

为什么在value明显不为零时会出现此错误?有没有办法让这项工作?



1> Sergio Tulen..:
Val = Struct.new(:value) do
  def inc 
    p value # here it still prints 1

    # but here you REDEFINED what value is. It is now a local variable!
    # Also its initial value is nil, hence the error you're getting.
    value = value + 1 

    # should have used this instead, to reference the method
    self.value = value + 1
  end
end

推荐阅读
手机用户2402852387
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有