是什么触发了有关不明确的第一个参数的 Ruby 警告?

发布于 2024-10-21 02:28:12 字数 466 浏览 0 评论 0原文

在 Ruby 1.9.1 中,如果您这样做

$VERBOSE = true
puts /m/ , 42.to_s

或如果我这样做

$VERBOSE = true
puts /m/ , "42"

您会收到警告

warning: ambiguous first argument; put parentheses or even spaces

我不会收到警告

$VERBOSE = true
puts "m" , 42.to_s

但如果我这样做或

$VERBOSE = true
puts(/m/, 42.to_s)

那么具体是什么触发了此警告?我还可以在原始表达式中添加哪些空格?

In Ruby 1.9.1, if you do

$VERBOSE = true
puts /m/ , 42.to_s

or if I do

$VERBOSE = true
puts /m/ , "42"

You get the warning

warning: ambiguous first argument; put parentheses or even spaces

But I don't get it if I do

$VERBOSE = true
puts "m" , 42.to_s

or

$VERBOSE = true
puts(/m/, 42.to_s)

So what specifically triggers this warning? And what more spaces could I have added to the original expression?

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

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

发布评论

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

评论(1

一个人的夜不怕黑 2024-10-28 02:28:12

“问题”是 / 可以表示除法或正则表达式。该消息是通用的;解析器并不一定意味着空格会对给定的特定表达式有所帮助。

The "problem" is that / could signify division or a regular expression. The message is generic; the parser doesn't necessarily mean that spaces would have helped a given specific expression.

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