6.5 for、foreach 語句
for 語句使用格式
for (initialization; condition; update)
{
statements;
}
空的 for 語句(所有的操作都在initialization、condition 或 update中實現)使用格式
for (initialization; condition; update); // update user id
foreach 語句使用格式
foreach (object obj in array)
{
statements;
}
注意 1在循環過程中不要修改循環計數器。
2對每個空循環體給出確認性注釋。
6.6 while 語句
while 語句使用格式
while (condition)
{
statements;
}
空的 while 語句使用格式
while (condition);
6.7 do - while 語句
do - while 語句使用格式
do
{
statements;
} while (condition);
6.8 switch - case 語句
switch - case 語句使用格式
switch (condition)
{
case 1:
statements;
break;
case 2:
statements;
break;
default:
statements;
break;
}
注意:
1)語句switch中的每個case各占一行。
2)語句switch中的case按字母順序排列。
3)為所有switch語句提供default分支。
4)所有的非空 case 語句必須用 break; 語句結束。