gpt4 book ai didi

perl - ~~ 是短路运算符吗?

转载 作者:行者123 更新时间:2023-12-01 09:36:56 24 4
gpt4 key购买 nike

来自 Smart matching in detail perlsyn 中的部分:

The smart match operator short-circuits whenever possible.



是否 ~~有什么共同点 short circuit operators ( &&|| 等)?

最佳答案

这里短路的意思是,一旦 bool 结果成立,评估就会停止。

perl -E "@x=qw/a b c d/; for (qw/b w/) { say qq($_ - ), $_ ~~ @x ? q(ja) : q(nein) }"

对于输入 b , Perl 不会看 b 后面的元素在 @x . grep另一方面,您引用的文档所引用的 built-in 将处理整个列表,即使所有需要的可能是一个 bool 值。
perl -E "@x=qw/a b c/; for (qw/b d/) { say qq($_ - ), scalar grep $_, @x ? q(ja) : q(nein) }"

关于perl - ~~ 是短路运算符吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5909430/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com