Ruby:如何检查变量是否存在于哈希定义中

发布于 2024-12-12 04:30:15 字数 278 浏览 0 评论 0原文

我是红宝石新手。有办法做到以下几点吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

¢好甜 2024-12-19 04:30:15

d11wtg 答案就可以了。此外,通过添加括号,值将按预期存储:

hash = {
  :key1  => (defined? value1) ? value1 : nil, 
  :key2  => (defined? value2) ? value2 : nil
}

d11wtg answer will do. Also, by adding parentheses, the values are stored as expected:

hash = {
  :key1  => (defined? value1) ? value1 : nil, 
  :key2  => (defined? value2) ? value2 : nil
}
温暖的光 2024-12-19 04:30:15

您正在寻找 lambdaProc

hash = {
  :key1 => lambda { defined?(value1) ? value1 : nil },
  :key2 => lambda { defined?(value2) ? value1 : nil }
}

hash[:key1].call

http://www.ruby-doc.org /core-1.9.2/Kernel.html#method-i-lambda

You're looking for lambda, or Proc.

hash = {
  :key1 => lambda { defined?(value1) ? value1 : nil },
  :key2 => lambda { defined?(value2) ? value1 : nil }
}

hash[:key1].call

http://www.ruby-doc.org/core-1.9.2/Kernel.html#method-i-lambda

青春有你 2024-12-19 04:30:15

你到底想做什么?

哈希[:key].nil?

将返回 true 或 false,具体取决于键是否存在。不确定这是否是您正在寻找的。

What exactly do you want to do?

hash[:key].nil?

will return true or false, depending if the key exists. Not sure if that's what you are looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文