TCL continue語句


Tcl語言中continue語句的工作有點像break語句。但不是強制終止,但是,繼續強制迴圈的下一個疊代發生,跳過中間的程式碼。

對於for迴圈,continue語句使迴圈的條件測試和增量部分執行。對於while迴圈,continue語句通過程式控制的條件測試。

語法

在Tcl continue語句的語法如下:

continue;

流程圖

Continue Statement

範例

#!/usr/bin/tclsh

set a 10
# do loop execution 
while { $a < 20 } {
   if { $a == 15} {
     #skip the iteration 
	 incr a
     continue
   }
   puts "value of a: $a"
   incr a     
}

當上述程式碼被編譯和執行時,它產生了以下結果:

value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 16
value of a: 17
value of a: 18
value of a: 19