Tcl Continue语句
TCL语言中的 continue 语句与 break 语句类似。不同的是, continue 语句强制进行下一次循环迭代,跳过中间的任何代码,而不是结束循环。
对于 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