當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Binding.local_variable_set用法及代碼示例


本文簡要介紹ruby語言中 Binding.local_variable_set 的用法。

用法

local_variable_set(symbol, obj) → obj

Set 局部變量名為 symbolobj

def foo
  a = 1
  bind = binding
  bind.local_variable_set(:a, 2) # set existing local variable `a'
  bind.local_variable_set(:b, 3) # create new local variable `b'
                                 # `b' exists only in binding

  p bind.local_variable_get(:a)  #=> 2
  p bind.local_variable_get(:b)  #=> 3
  p a                            #=> 2
  p b                            #=> NameError
end

此方法的行為類似於以下代碼:

binding.eval("#{symbol} = #{obj}")

如果 obj 可以轉儲到 Ruby 代碼中。

相關用法


注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Binding.local_variable_set。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。