PHP 編碼規(guī)范(16)
發(fā)表時間:2024-06-07 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]6.8 switch語句一個switch語句應(yīng)該具有如下格式:switch (condition) { case ABC: /* falls through */ statements; case DEF: statements; break; case XYZ: s...
6.8 switch語句一個switch語句應(yīng)該具有如下格式:
switch (condition) {
case ABC:
/* falls through */
statements;
case DEF:
statements;
break;
case XYZ:
statements;
break;
default:
statements;
break;
}
每當(dāng)一個case順著往下執(zhí)行時(因為沒有break語句),通常應(yīng)在break語句的位置添加注釋。上面的示例代碼中就包含注釋/* falls through */。