本文簡要介紹ruby語言中 Binding.local_variables
的用法。
用法
local_variables → Array
將綁定的局部變量的名稱作為符號返回。
def foo
a = 1
2.times do |n|
binding.local_variables #=> [:a, :n]
end
end
此方法是以下代碼的簡短版本:
binding.eval("local_variables")
相關用法
- Ruby Binding.local_variable_defined?用法及代碼示例
- Ruby Binding.local_variable_set用法及代碼示例
- Ruby Binding.local_variable_get用法及代碼示例
- 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_variables。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。