您要查找的是不是:
- Spectrum原子Spectrum atoms
- secondary spectrum (色像差)二级光谱
- break或CONTINUE超出循环BREAK or CONTINUE outside of loop
- extended spectrumβ-lactamase超广谱β-内酰胺酶
- extended spectrum β lactamases超广谱β内酰胺酶
- 在条件2中,continue移回内部循环的起始处。In case 2, the continue moves back to the beginning of the inner iteration.
- CO2 laser spectrum analyzer二氧化碳激光谱线分析仪
- 超出FINALLY子句的范围,不能使用break,CONTINUE或EXIT语句Cannot BREAK, CONTINUE or EXIT out of a FINALLY clause
- Debye-Scherrer spectrum (粉末法X射线谱)德拜-谢列尔射线谱
- 修正了玩家在单人战役结束后选择Continue还可以存档的问题Fixed an issue that allowed players to save after choosing Continue in a single-player mission.
- SPECTRUM集散控制系统在6000m~2/h制氧机上的开发和应用Development and Application of SPECTRUM DCS System in 6000m~3/h Air Separation Plant
- NOTIFY_CONTINUE报告错误,提示用户按Enter或单击[确定]继续。NOTIFY_CONTINUE The error is reporting, and the user is prompted to press Enter or click OK to continue.
- (2) 带有标签的continue会到达标签的位置,并重新进入紧接在那个标签后面的循环。(2).A labeled continue goes to the label and re-enters the loop right after that label.
- 然而,在break和continue这两个关键字的身上,我们仍然能看出一些goto的影子。However, it does have something that looks a bit like a jump tied in with the break and continue keywords.
- 使用扫描电子显微镜(SEM)、透射电子显微镜(TEM)和拉曼光谱(Raman spectrum)表征了样品的形貌和结构.The morphology and structure were evaluated by scanning electron microscopy (SEM), transmission electron microscopy (TEM) and Raman spectrum.
- 可以在嵌套循环中使用Continue关键字以跳到外层循环的下一次迭代The Continue keyword can be used in a nested loop to skip to the next iteration of an outer loop.
- 注:注意在PHP中switch语句被认为是作为continue目的的循环结构。Note: Note that in PHP the switch statement is considered a looping structure for the purposes of continue.
- 并对扩频技术(Spread Spectrum,SS)的数字水印一般模型以及ISS(Improved Spread Spectrum,ISS)调制关键技术进行了深入分析。Then, we grasp the target and the direction of the research. Finally, the thorough analysis of the generic system model of Spread Spectrum(SS) and Improved Spread Spectrum(ISS) modulation has been done.
- 下面这个程序向大家展示了break和continue在for和while循环中的例子:This program shows examples of break and continue within for and while loops:
- 简单的一个continue会退回最内层循环的开头(顶部),并继续执行。A plain continue goes to the top of the innermost loop and continues.