什么是PowerShell Break语句?
PowerShell中的break语句对于终止循环很有用。当break语句在内部循环内执行时,它将终止该特定的循环执行;当将其放置在外部循环中时,它将终止整个循环(包括子循环)。
Break语句与Foreach,For,While,Do-While和Switch语句一起使用。将break语句与Label一起使用时,PowerShell会执行label循环,而不是退出循环。
中断声明示例
$i = 1 While($i -ne 10){ Write-Output $i if($i -eq 5){break} $i++ }
输出结果
1 2 3 4 5
在上面的示例中,由于执行Break语句,当值达到5时,循环终止。