[].include?(:test) 返回 nil

发布于 2024-08-27 04:08:53 字数 369 浏览 1 评论 0原文

遇到一个奇怪的问题,[].include?(:test)返回nil而不是预期的false。整个事情仅在运行应用程序时发生(我在 ruby​​mine 调试模式下看到它),而不是在 irb 或 Rails 控制台中。

我测试了以下内容:

[].include?(:test)  # nil

[].include?(:test).nil? # nil

[].class # Array

似乎包含?被覆盖在某个地方,但我一直无法找到在哪里。 grep -R Array * 和 grep -R 包括什么? * 没有显示任何奇怪的东西。知道我如何才能找到更多信息吗?

Having the strange problem that [].include?(:test) returns nil instead of expected false. The whole thing only happens when running the app (i see it in rubymine debug mode), not in irb or rails console.

I tested the following:

[].include?(:test)  # nil

[].include?(:test).nil? # nil

[].class # Array

Seems as if include? is overwritten somewhere, but I have not been able to find out where. grep -R Array * and grep -R include? * show nothing strange. Any idea how I could find out more?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文