4
while [condition]
do
  for [condition]
  do
    if [ "$x" > 3 ];then
      break
    fi
  done

  if [ "$x" > 3 ];then
    continue
  fi
done

在上面的脚本中,我必须测试"$x" > 3两次。实际上,我第一次测试它时,如果它是真的,我想逃避 while 循环并继续下一个 while 循环。

有没有更简单的方法,所以我可以使用类似的东西continue 2来逃避外循环?

4

1 回答 1

1

“break”和“continue”是“goto”的近亲,通常应该避免,因为它们会引入一些无名条件,导致程序控制流发生飞跃。如果存在需要跳转到程序的其他部分的条件,下一个阅读它的人会感谢您为该条件命名,这样他们就不必弄清楚了!

在您的情况下,您的脚本可以更简洁地编写为:

dataInRange=1
while [condition -a $dataInRange]
do
  for [condition -a $dataInRange]
  do
    if [ "$x" > 3 ];then
      dataInRange=0
    fi
  done
done
于 2012-10-26T01:10:05.603 回答