Ruby:如何检查变量是否存在于哈希定义中
我是红宝石新手。有办法做到以下几点吗?
hash = {
:key1 => defined? value1 ? value1 : nil,
:key2 => defined? value2 ? value2 : nil
}
puts hash[:key1] # outputs: ["expression"]
上面的代码存储表达式,而不是值(如果已定义)或nil(如果未定义)。
I'm new to Ruby. Is there a way to do the following?
hash = {
:key1 => defined? value1 ? value1 : nil,
:key2 => defined? value2 ? value2 : nil
}
puts hash[:key1] # outputs: ["expression"]
The above code stores the expression, instead of the value (if it is defined) or nil (if it is not defined).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
d11wtg 答案就可以了。此外,通过添加括号,值将按预期存储:
d11wtg answer will do. Also, by adding parentheses, the values are stored as expected:
您正在寻找
lambda
或Proc
。http://www.ruby-doc.org /core-1.9.2/Kernel.html#method-i-lambda
You're looking for
lambda
, orProc
.http://www.ruby-doc.org/core-1.9.2/Kernel.html#method-i-lambda
你到底想做什么?
将返回 true 或 false,具体取决于键是否存在。不确定这是否是您正在寻找的。
What exactly do you want to do?
will return true or false, depending if the key exists. Not sure if that's what you are looking for.