Nếu tôi làm như sau trong tập lệnh PowerShell:
$range = 1..100
ForEach ($_ in $range) {
if ($_ % 7 -ne 0 ) { continue; }
Write-Host "$($_) is a multiple of 7"
}
Tôi nhận được kết quả mong đợi là:
7 is a multiple of 7
14 is a multiple of 7
21 is a multiple of 7
28 is a multiple of 7
35 is a multiple of 7
42 is a multiple of 7
49 is a multiple of 7
56 is a multiple of 7
63 is a multiple of 7
70 is a multiple of 7
77 is a multiple of 7
84 is a multiple of 7
91 is a multiple of 7
98 is a multiple of 7
Tuy nhiên, nếu tôi sử dụng một đường ống và ForEach-Object
, continue
dường như thoát ra khỏi vòng lặp đường ống.
1..100 | ForEach-Object {
if ($_ % 7 -ne 0 ) { continue; }
Write-Host "$($_) is a multiple of 7"
}
Tôi có thể nhận được một continue
hành vi giống như trong khi vẫn thực hiện ForEach-Object, vì vậy tôi không phải chia nhỏ đường dẫn của mình không?
foreach
: techotopia.com/index.php/...