如果语句执行返回一个错误,过程将自动中断或回滚事务。
If statement execution returns an error, the procedure is automatically aborted or the transaction is rolled back.
break语句的一个特殊特性是,它完全中断循环,并跳转到循环下面的任一个else子句。
One special feature of the break statement is that it breaks completely out of the loop, thereby skipping any else clause that follows the loop.
此时,break语句导致程序执行中断while循环,跳转到else子句。
At this point, the break statement causes program execution to break out of the while loop, skipping the else clause.
这导致执行break语句,中断循环。
This causes the break statement to be executed, breaking out of the loop.
continue和break语句分别用于在 while循环中继续下一次循环或中断循环。
The continue and break statements are used inside a while loop to continue with the next pass through the loop or break out of the loop, respectively.
确保一组内核语句被当作一个临界区域处理的主要机制之一就是中断禁止。
Interrupt disabling is one of the key mechanisms used to ensure that a sequence of kernel statements is treated as a critical section.
您可以在中断模式下对可执行语句进行几乎所有类型的更改,所做更改将被合并到基础项目中。
You can make almost any kind of change to executable statements while in Break mode, and the change will be incorporated into the underlying project.
许多编程语言都有用于挂起执行并使程序进入中断模式的语句或构造。
Many programming languages have statements or constructs that suspend execution and put your program into break mode.
但是,在中断模式下一般不允许对声明语句(如公共方法、公共字段或类声明)进行更改。
While in Break mode, however, you are generally not allowed to change declaration statements, such as public methods, public fields, or class declarations.
但是,在中断模式下一般不允许对声明语句(如公共方法、公共字段或类声明)进行更改。
While in Break mode, however, you are generally not allowed to change declaration statements, such as public methods, public fields, or class declarations.
应用推荐