本文簡要介紹ruby語言中 Binding.local_variable_defined?
的用法。
用法
local_variable_defined?(symbol) → obj
如果存在局部變量 symbol
,則返回 true
。
def foo
a = 1
binding.local_variable_defined?(:a) #=> true
binding.local_variable_defined?(:b) #=> false
end
此方法是以下代碼的簡短版本:
binding.eval("defined?(#{symbol}) == 'local-variable'")
相關用法
- Ruby Binding.local_variable_set用法及代碼示例
- 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_defined?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。