在
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)
那么什么具体触发这个警告?还有什么更多的空间可以添加到原来的表达?
解决方法
“问题”是/可以表示分裂或正则表达式.消息是通用的解析器不一定意味着空格将帮助给定的特定表达式.