您要查找的是不是:
- 这是构建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.