在C#中,while
循環(huán)會一直執(zhí)行,直到給定的條件不再滿足。退出條件是定義在while
關(guān)鍵字后面的括號中的布爾表達式。當(dāng)這個表達式的值為false
時,循環(huán)將停止執(zhí)行。
以下是一個簡單的示例,展示了如何在C#中使用while
循環(huán)和設(shè)置退出條件:
using System;
class Program
{
static void Main()
{
int counter = 0;
while (counter < 5) // 退出條件:當(dāng)counter不小于5時,循環(huán)停止
{
Console.WriteLine("Counter: " + counter);
counter++; // 每次迭代時,計數(shù)器加1
}
}
}
在這個示例中,我們定義了一個名為counter
的變量,并將其初始值設(shè)置為0。然后,我們創(chuàng)建了一個while
循環(huán),其退出條件是counter < 5
。在循環(huán)內(nèi)部,我們打印counter
的值,并在每次迭代時將其加1。當(dāng)counter
不再小于5時,循環(huán)將停止執(zhí)行。