Perl 钻石运算符内部的奇怪事情
请任何人都可以帮我解决这个问题:
perl -e 'print for <{a,b,c}{1,2,3}>'
我只是不明白它是如何工作的。它有效! 按产出生产
a1a2a3b1b2b3c1c2c3
。
有谁知道钻石运营商内部发生了什么?
Please, can anyone help me with this:
perl -e 'print for <{a,b,c}{1,2,3}>'
I just don't understand how it works. And it works! Producing
a1a2a3b1b2b3c1c2c3
on output.
Does anyone know what is happening inside diamond operator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是表示
glob
bing 的另一种方式。基本上,花括号告诉 glob 运算符将每个逗号分隔的元素放入其中并组合所有可能性。更清晰的方法是用逗号分隔各个输出:
来自
perldoc -f glob
:
It's another way to represent
glob
bing. Basically the curlies tell theglob
operator to take each comma-separated element inside and combine across all possibilities.A clearer way to see this is to comma-separate the individual outputs:
From
perldoc -f glob
: