C語言中,break和continue都是跳出循環(huán),有啥區(qū)別?
對(duì)于 for 循環(huán),執(zhí)行 continue 之后的下一個(gè)行為是對(duì)更新表達(dá)式求值,然后是對(duì)循環(huán)測(cè)試表達(dá)式求值,下面的代碼示例包括了嵌套循環(huán)中使用 continue 的情形:#include int main() { //while() char CH; int count=0; while(count < 10){ CH = getchar(); if(CH != ' ') continue; putchar(CH); count++; } printf("Hello, World!\n"); return 0; }
continue跳出本次循環(huán),執(zhí)行下一次循環(huán)。
break:
break跳出整個(gè)循環(huán)
下面看代碼 while 示例:for循環(huán)及嵌套循環(huán)示例: 注:只會(huì)直接跳出內(nèi)層循環(huán),外層循環(huán)正常執(zhí)行#include int main() { //while() char CH; int count=0; while(count < 10){ CH = getchar(); if(CH != ' ') break; putchar(CH); count++; } printf("Hello, World!\n"); return 0; }
要想外層循環(huán)一并終止;需要在外層在使用 break;#include int main() { char ch; int cunt; int i; for(cunt=0;cunt<10;cunt++){ ch = getchar(); for(i=0;i<5;i++){ if (ch != ' ') break; putchar(ch); printf("我是內(nèi)層循環(huán)的---小可愛?。?!\n"); } printf("我是外層循環(huán)的---小可愛?。?!\n"); printf("如果continue語句在嵌套循環(huán)內(nèi),則只會(huì)影響包含continue的內(nèi)層循環(huán),不影響外層循環(huán)?。?!\n"); } printf("Hello, World!\n"); return 0; }
在多重選擇 switch 語句中使用 continue 和 break的示例:#include int main() { char ch; int cunt; int i; for(cunt=0;cunt<10;cunt++){ ch = getchar(); for(i=0;i<5;i++){ if (ch != ' ') break; putchar(ch); printf("我是內(nèi)層循環(huán)的---小可愛?。。n"); } if (ch != ' ') break; printf("我是外層循環(huán)的---小可愛?。?!\n"); printf("如果continue語句在嵌套循環(huán)內(nèi),則只會(huì)影響包含continue的內(nèi)層循環(huán),不影響外層循環(huán)?。?!\n"); } printf("Hello, World!\n"); return 0; }
在本例中 continue 的作用與上述類似,但是 break 的作用不同:它讓程序離開 switch 語句,跳至switch語句后面的下一條語句;如果沒有 break 語句,就會(huì)從匹配標(biāo)簽開始執(zhí)行到 switch 末尾; 注:C語言中的 case 一般都指定一個(gè)值,不能使用一個(gè)范圍;switch 在圓括號(hào)中的測(cè)試表達(dá)式的值應(yīng)該是一個(gè)整數(shù)值(包括 char 類型);case 標(biāo)簽必須是整數(shù)類型(包括 char 類型)的常量 或 整型常量表達(dá)式( 即, 表達(dá)式中只包含整型常量)。不能使用變量作為 case 的標(biāo)簽 switch中有 break/* animals.c -- uses a switch statement */ #include #include int main(void) { char ch; printf("Give me a letter of the alphabet, and I will give "); printf("an animal name\nbeginning with that letter.\n"); printf("Please type in a letter; type # to end my act.\n"); while ((ch = getchar()) != '#') { if('\n' == ch) continue; if (islower(ch)) /* lowercase only */ switch (ch) { case 'a' : printf("argali, a wild sheep of Asia\n"); break; case 'b' : printf("babirusa, a wild pig of Malay\n"); break; case 'c' : printf("coati, racoonlike mammal\n"); break; case 'd' : printf("desman, aquatic, molelike critter\n"); break; case 'e' : printf("echidna, the spiny anteater\n"); break; case 'f' : printf("fisher, brownish marten\n"); break; default : printf("That's a stumper!\n"); } /* end of switch */ else printf("I recognize only lowercase letters.\n"); while (getchar() != '\n') continue; /* skip rest of input line */ printf("Please type another letter or a #.\n"); } /* while loop end */ printf("Bye!\n"); return 0; }
遇到break后跳出,繼續(xù)匹配switch。
switch 中 無break
順序執(zhí)行每個(gè)case。
免責(zé)聲明:本文內(nèi)容由21ic獲得授權(quán)后發(fā)布,版權(quán)歸原作者所有,本平臺(tái)僅提供信息存儲(chǔ)服務(wù)。文章僅代表作者個(gè)人觀點(diǎn),不代表本平臺(tái)立場(chǎng),如有問題,請(qǐng)聯(lián)系我們,謝謝!