Listing 7. Pseudocode for the while loop.
清单7. while循环的伪代码。
Listing 2 shows this while loop and the corresponding condition.
清单2显示了这个while循环和相应的条件。
Listing 5 shows an example of an SQL procedure with a WHILE loop.
清单5展示了一个包含WHILE循环的示例SQL过程。
Figure 6 shows the contents of the while loop (Manufacturing loop).
图6显示了while循环的内容(ManufacturingLoop)。
Instead, the program enters a while loop waiting for new connections.
相反,程序进入一个while循环,等待新的连接。
The while loop in Listing 12 ensures that spurious wake-ups are handled properly.
清单12中的while循环确保正确地处理虚假的唤醒。
This starts the second trip through the while loop, where the variable I becomes 25.
这就会第二次进入while循环,这次变量i变成了25。
The while loop declaration describes the conditions under which the loop will continue.
while循环声明描述循环继续的条件。
BuildCanary then goes back to the top of its while loop and waits for the next message.
然后,BuildCanary回到while循环的顶端,等待下一条消息。
Listing 3 shows a simple while loop that USES these functions to print what it sees.
清单3展示了简单的while循环,该循环使用这些函数来打印它所查看的内容。
That's why the main test method in Listing 1 USES a while loop instead of a new for loop.
这就是为什么清单1中的main测试方法使用while循环而不是一个新的for循环。
The while loop is a perfect example to close with, as it combines a loop with a condition.
因为while循环将循环与条件结合起来,因此它是个非常容易接受的示例。
The while loop, which executes a block of statements as long as a test expression is true.
while循环,它当一个测试表达式为true时执行一个语句块。
A while loop will rarely include the number of iterations — unless it is a for loop in disguise.
while循环很少包含迭代次数——除非它是一个伪装的for循环。
A while loop is a loop that repeats the included activities while some condition is satisfied.
一个while循环在满足一些条件的情况下,将重复所包含的活动。
The source attribute states that each of the sendMail activities should follow the while loop.
source属性表明,每个sendMail活动都应该遵循while 循环。
The % MACRO_FUNCTION of Listing 4 shows six insert statements executed 40 times using a while loop.
清单4的% MACRO_FUNCTION显示了使用while循环执行了40次的六条insert语句。
If you clicked + to expand a while loop, the editor showed just the contents of the while loop.
如果单击+以展开while循环,编辑器仅显示while循环的内容。
Notice how this method accounts for possible weak references in the queue with the do-while loop.
请注意该方法如何用do -while循环来处理队列中可能存在的弱引用。
With a while loop set up to read from stdin, the various components of the dots file are extracted.
建立一个while循环从stdin中读取数据,这样可以将dots文件中的各项内容提取出来。
The while loop (like the for loop introduced later in this article) supports three additional statements
while循环(与本文后面介绍的for 循环一样)支持三种附加语句
Figure 7 shows the visual flow and Figure 8 drills down to illustrate the flow inside the while loop.
图7展示了视觉流,图8深入演示while循环中的流。
Thus you need to wait until you're finished parsing the document (you've broken out of the while loop).
因此您需要等待,直到完成了文档的解析(已经跳出while 循环)。
In this way, the FileNet process ACTS in the same manner as a while loop, even though loops are not supported.
从这方面说,FileNet流程尽管不支持循环,但其操作方式与while循环相同。
Double clicking on the while activity in the editor enables you to see the sub flow inside the while loop.
如果您双击编辑器中的while活动,就会看到whlie循环中的子流。
A while loop then iterates through the dataset, storing the information in a convenient array for later display.
然后,一个while循环迭代数据集,在一个方便的数组中存储信息以便将来进行显示。
This article has introduced three Python program statements: the if statement, the while loop, and the for loop.
本文介绍了三种Python程序语句:if语句、while循环和for循环。
Some models are decomposed into multiple levels, such as a While loop within a local subprocess, within a While loop.
有些模型被分解为多个级别,例如While循环中的局部子流程中的While循环。
When there are no more rows to fetch from the result set, odbc_fetch_array returns FALSE and the while loop ends.
当不再需要从结果集读取行时,odbc_fetch_array会返回FALSE,且while循环结束。
Each time through the while loop, the next row in the resulting data set is accessed until the last row is reached.
每执行一次while循环,将访问结果数据集中的下一行直到到达最后一行。
应用推荐