|
| 1. | 每循环一次,外部循环都使循环计数器变量递减一次。 | |
| | The outer loop decrements a loop counter variable each time through the loop.
| |
| |
|
|
| |
|
| 2. | 循环中继续下一次循环或中断循环。 | |
| | Loop to continue with the next pass through the loop or break out of the loop, respectively.
| |
| |
|
|
| |
|
| 3. | 循环,在每次循环之后递减循环变量。 | |
| | Loop that decrements the loop variable after each iteration.
| |
| |
|
|
| |
|
| 4. | 如果while循环的控制表达式因该循环中途退出而为一个常数,则应考虑将while循环替换为for循环。 | |
| | If the controlling expression of a while loop is a constant because the loop will exit in the middle, consider replacing the while loop with a for loop.
| |
| |
|
|
| |
|
| 5. | 相等或为零循环指令 | |
| | Loop While Equal or Loop While Zero
| |
| |
|
|
| |
|
| 6. | 循环,选定的这些代码行在该循环块内。 | |
| | For loop with those lines of code inside the loop block.
| |
| |
|
|
| |
|
| 7. | 关于循环与循环不变式的讨论 | |
| | A discussion about loop and loop invariant
| |
| |
|
|
| |
|
| 8. | 以此方式声明的循环变量的范围是循环本身。 | |
| | The scope of a loop variable declared in this manner is the loop itself.
| |
| |
|
|
| |
|
| 9. | 利用循环分割和循环展开避免Cache代价 | |
| | Optimization to Prevent Cache Penalty by Loop Partition and Loop Unrolling
| |
| |
|
|
| |
|
| 10. | 当指令指针处于ForEach循环体内时,添加该循环。 | |
| | Adding a For Each loop, when the instruction pointer is in the body of the loop.
| |
| |
|
|
| |