您要查找的是不是:
- 這是構建switch語句的一種傳統方式,但break是可選的。This is the conventional way to build a switch statement, but the break is optional.
- break語句Break statement
- 若省略它,會繼續執行後面的case語句的代碼,直到遇到一個break為止。If it is missing,the code for the following case statements execute until a break is encountered.
- break;//..default:語句;break; // ... default: statement;
- break或CONTINUE超出循環BREAK or CONTINUE outside of loop
- 帶標籤的break會中斷當前循環,並移離由那個標籤指示的循環的末尾。.A labeled break drops out of the bottom of the end of the loop denoted by the label.
- ph.1. 狀語助詞(指動詞后的副詞如:come back break down中的back down)adverbial particle
- break尤用作工間或課間的休息Break applies especially to a rest during the working day or at school
- (3) break會中斷當前循環,並移離當前標籤的末尾。(3).A break "drops out of the bottom" of the loop.
- 在 come back、break down 和 fall off 中,back、down 和 off 都是副詞小詞。In 'come back', 'break down' and 'fall off', 'back', 'down' and 'off' are all adverbial particles.
- 將System.Diagnostics.Debugger.Break()語句添加到ASP.NET單元測試的開頭。Add the statement System.Diagnostics.Debugger.Break() to the beginning of your ASP.NET unit test.
- 下面的示例闡釋了break語句的用法。The following example illustrates the use of the break statement.
- 下面這個例子向大家展示了帶標籤的break以及continue語句在while循環中的用法:Here is a demonstration of labeled break and continue statements with while loops:
- 下面的示例闡釋了標記break語句的用法。The following example illustrates the use of the labeled break statement.
- 然而,循環內部有一個break語句,可中止循環。However, inside the loop there is a break statement that will break out of the loop.
- IF測試通常會啟動BREAK,但並不總是如此。BREAK is frequently, but not always, started by an IF test.
- 如果您使用的是串口控制台,發送break到機器。If you are using a serial console, send a break to the machine.
- 在條件1中,break中斷內部循環,並在外部循環結束。In case 1, the break breaks out of the inner iteration and you end up in the outer iteration.
- break會中斷當前循環,並移離當前標籤的末尾。.A break "drops out of the bottom" of the loop.
- 修改包含yield return或yield break語句的方法。Modifying a method that contains a yield return or yield break statement.