本文簡要介紹ruby語言中 Binding.local_variable_set
的用法。
用法
local_variable_set(symbol, obj) → obj
Set
局部變量名為 symbol
為 obj
。
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 Binding.local_variable_defined?用法及代碼示例
- Ruby Binding.local_variable_get用法及代碼示例
- Ruby Binding.local_variables用法及代碼示例
- Ruby Binding.eval用法及代碼示例
- Ruby Binding.irb用法及代碼示例
- Ruby Binding類用法及代碼示例
- Ruby BigMath.cos用法及代碼示例
- Ruby BigDecimal.self >用法及代碼示例
- Ruby BigMath.sin用法及代碼示例
- Ruby BigDecimal.self >=用法及代碼示例
- Ruby BigDecimal.floor用法及代碼示例
- Ruby BigDecimal.to_s用法及代碼示例
- Ruby BigDecimal.to_d用法及代碼示例
- Ruby BigDecimal.save_rounding_mode用法及代碼示例
- Ruby BigDecimal modulo用法及代碼示例
- Ruby BigDecimal infinite?用法及代碼示例
- Ruby BigDecimal.to_digits用法及代碼示例
- Ruby BigDecimal.add用法及代碼示例
- Ruby BigDecimal.save_exception_mode用法及代碼示例
- Ruby BigDecimal to_f()用法及代碼示例
- Ruby BigDecimal to_r()用法及代碼示例
- Ruby BigDecimal exponent用法及代碼示例
- Ruby BigDecimal.ceil用法及代碼示例
- Ruby BigDecimal log()用法及代碼示例
- Ruby BigDecimal sub()用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Binding.local_variable_set。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。