continue

結束本次循環,繼續執行下一個for,while或until循環。

概要

1continue [n]

主要用途

  • 結束本次循環,繼續執行下一個for,while或until循環;可指定從第幾層循環繼續執行。

參數

n(可選):大於等於1的整數,用於指定從第幾層循環繼續執行。

返回值

返回狀態爲成功除非n小於1。

例子

 1# continue的可選參數n缺省值爲1。
 2for((i=3;i>0;i--)); do
 3  # 跳到內層for循環繼續執行。
 4  for((j=3;j>0;j--)); do
 5    if((j==2)); then
 6      # 換成continue 1時結果一樣
 7      continue
 8    fi
 9  printf "%s %s\n" ${i} ${j}
10  done
11done
12# 輸出結果
133 3
143 1
152 3
162 1
171 3
181 1
 1# 當n爲2時:
 2# 跳到外層for循環繼續執行。
 3for((i=3;i>0;i--)); do
 4  for((j=3;j>0;j--)); do
 5    if((j==2)); then
 6      continue 2
 7    fi
 8  printf "%s %s\n" ${i} ${j}
 9  done
10done
11# 輸出結果
123 3
132 3
141 3

注意

  1. 該命令是bash內建命令,相關的幫助信息請查看help命令。

來源:https://github.com/jaywcjlove/linux-command

最後修改於: Wednesday, January 31, 2024

相關文章:

翻譯: