continue主要用途在于结束本次循环,继续执行下一个for,while或until循环;可指定从第几层循环继续执行。
语法格式:continue
常用参数:
n | 大于等于1的整数,用于指定从第几层循环继续执行 |
参考实例
continue的可选参数n缺省值为1:
for((i=3;i>0;i--)); do for((j=3;j>0;j--)); do if((j==2)); then continue fi printf "%s %s\n" ${i} ${j} done done # 输出结果 3 3 3 1 2 3 2 1 1 3 1 1
当n为2时: 跳到外层for循环继续执行:
for((i=3;i>0;i--)); do for((j=3;j>0;j--)); do if((j==2)); then continue 2 fi printf "%s %s\n" ${i} ${j} done done # 输出结果 3 3 2 3 1 3
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)