繼續
Continue
運算子在 For
,ForEach
,While
和 Do
迴圈中工作。它會跳過迴圈的當前迭代,跳轉到最內層迴圈的頂部。
$i =0
while ($i -lt 20) {
$i++
if ($i -eq 7) { continue }
Write-Host $I
}
以上將輸出 1 到 20 到控制檯但錯過了數字 7。
注意 :使用管道迴圈時,應使用 return
而不是 Continue
。
Continue
運算子在 For
,ForEach
,While
和 Do
迴圈中工作。它會跳過迴圈的當前迭代,跳轉到最內層迴圈的頂部。
$i =0
while ($i -lt 20) {
$i++
if ($i -eq 7) { continue }
Write-Host $I
}
以上將輸出 1 到 20 到控制檯但錯過了數字 7。
注意 :使用管道迴圈時,應使用 return
而不是 Continue
。