TCL continue語句
Tcl語言中continue語句的工作有點像break語句。但不是強制終止,但是,繼續強制循環的下一個迭代發生,跳過中間的代碼。
對於for循環,continue語句使循環的條件測試和增量部分執行。對於while循環,continue語句通過程序控制的條件測試。
語法
在Tcl continue語句的語法如下:
continue;
流程圖
示例
#!/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