在Perl中,是否适合在void context中使用map而不是foreach循环?

前端之家收集整理的这篇文章主要介绍了在Perl中,是否适合在void context中使用map而不是foreach循环?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Perl中,如果你有这样的循环:
foreach (@items) {
    perform_action($_);
}

你可以用void context中的map来替换它:

map {
    perform_action($_)
} @items;

做什么有什么好处吗?它是否具有性能影响,因为Perl认为它必须保存结果?改善/改善可读性吗?

解决方法

从Perl 5.8.1开始,在void语境中的映射不是很贵:

map in void context is no longer
expensive. map is now context aware,
and will not construct a list if
called in void context.

但后缀的形式可能更可读:

perform_action($_) for @items;
原文链接:https://www.f2er.com/Perl/172554.html

猜你在找的Perl相关文章