作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一个 perl 脑筋急转弯:
my @l = ('a', 'b', 'c');
for (@l) {
my $n = 1;
print shift @l while (@l and $n --> 0);
print "\n";
}
my @l = ('a', 'b', 'c', 'd');
my @l = ('a', 'b', 'c', 'd', 'e');
最佳答案
Dave Webb解决了我的问题,但这里引用了 perldoc perlsyn
说不要这样做:
If any part of LIST is an array,
foreach
will get very confused if you add or remove elements within the loop body, for example withsplice
. So don't do that.
foreach
的语法被描述为
foreach LIST
,这是
LIST
他们在文档中提到。另请注意
foreach
和
for
是等价的。
关于perl - 为什么 Perl 的 for() 不遍历数组中的所有元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2014603/
我是一名优秀的程序员,十分优秀!