php中關於break與continue兩者之間的用法區別
break
continue
php
關於
一般說來,程式進入迴圈體後在下次迴圈判斷之前執行迴圈體裡的所有語句,break和continue語句可以終止迴圈或忽略某些迴圈。
break: 此語句導致程式終止包含它的循環,並進行程式的下一階段(整個循環後面的語句),即,不是跳到下一個循環週期而是退出循環。如果break語句包含在巢狀迴圈裡,它只會跳出最裡面的迴圈。
#include<stdio.h> int main() { int res=0; int i=0; int n=0; printf("test break and continue\n"); for(i=0;i<6;i++) { printf("start...\n"); if(i==3) { printf("break \n"); break; printf("break after\n"); //printf("continue \n"); //continue; //printf("continue after\n"); } printf("now i = %d\n",i); } printf("test over !!!\n"); return 0; }
登入後複製
$ gcc -o bc bc.c $ ./bc test break and continue start... now i = 0 start... now i = 1 start... now i = 2 start... break test over !!! $
登入後複製
巢狀迴圈(break):
#include<stdio.h> int main() { int res=0; int i=0; int n=0; printf("test break and continue\n"); for(i=0;i<6;i++) { printf("start...\n"); for(n=0;n<6;n++) { if(n==3) { printf("break \n"); break; //printf("continue \n"); //continue; } printf("now n= %d\n",n); } if(i==3) { printf("break \n"); break; printf("break after\n"); //printf("continue \n"); //continue; //printf("continue after\n"); } printf("now i = %d\n",i); } printf("test over !!!\n"); return 0; }
登入後複製
$ gcc -o bc bc.c $ ./bc test break and continue start... now n= 0 now n= 1 now n= 2 break now i = 0 start... now n= 0 now n= 1 now n= 2 break now i = 1 start... now n= 0 now n= 1 now n= 2 break now i = 2 start... now n= 0 now n= 1 now n= 2 break break test over !!! $
登入後複製
continue:迴圈語句裡有此語句時,程式執行到此語句時,不在執行迴圈體裡continue後面的語句而是跳到下一個迴圈入口處執行下一個迴圈。如果continue語句包含在巢狀迴圈語句裡,它只會影響包含它的最裡層的迴圈。
#include<stdio.h> int main() { int res=0; int i=0; int n=0; printf("test break and continue\n"); for(i=0;i<6;i++) { printf("start...\n"); if(i==3) { //printf("break \n"); //break; //printf("break after\n"); printf("continue \n"); continue; printf("continue after\n"); } printf("now i = %d\n",i); } printf("test over !!!\n"); return 0; }
登入後複製
$ gcc -o bc bc.c $ ./bc test break and continue start... now i = 0 start... now i = 1 start... now i = 2 start... continue start... now i = 4 start... now i = 5 test over !!! $
登入後複製
巢狀迴圈(continue):
#include<stdio.h> int main() { int res=0; int i=0; int n=0; printf("test break and continue\n"); for(i=0;i<6;i++) { printf("start...\n"); for(n=0;n<6;n++) { if(n==3) { //printf("break \n"); //break; printf("continue \n"); continue; } printf("now n= %d\n",n); } if(i==3) { //printf("break \n"); //break; //printf("break after\n"); printf("continue \n"); continue; printf("continue after\n"); } printf("now i = %d\n",i); } printf("test over !!!\n"); return 0; }
登入後複製
$ gcc -o bc bc.c $ ./bc test break and continue start... now n= 0 now n= 1 now n= 2 continue now n= 4 now n= 5 now i = 0 start... now n= 0 now n= 1 now n= 2 continue now n= 4 now n= 5 now i = 1 start... now n= 0 now n= 1 now n= 2 continue now n= 4 now n= 5 now i = 2 start... now n= 0 now n= 1 now n= 2 continue now n= 4 now n= 5 continue start... now n= 0 now n= 1 now n= 2 continue now n= 4 now n= 5 now i = 4 start... now n= 0 now n= 1 now n= 2 continue now n= 4 now n= 5 now i = 5 test over !!! $
登入後複製
以上是php中關於break與continue兩者之間的用法區別的詳細內容。更多資訊請關注PHP中文網其他相關文章!
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章
R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
2 週前
By 尊渡假赌尊渡假赌尊渡假赌
倉庫:如何復興隊友
4 週前
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒險:如何獲得巨型種子
3 週前
By 尊渡假赌尊渡假赌尊渡假赌
擊敗分裂小說需要多長時間?
3 週前
By DDD
R.E.P.O.保存文件位置:在哪里以及如何保護它?
3 週前
By DDD

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

適用於 Ubuntu 和 Debian 的 PHP 8.4 安裝和升級指南

如何設定 Visual Studio Code (VS Code) 進行 PHP 開發
