循环语句英语怎么说
本文为您带来循环语句的英文翻译,包括循环语句用英语怎么说,循环语句用英语怎么说,循环语句的英语造句,
本文为您带来循环语句的英文翻译,包括循环语句用英语怎么说,循环语句用英语怎么说,循环语句的英语造句,循环语句的英文原声例句,循环语句的相关英语短语等内容。
循环语句的英文翻译,循环语句的英语怎么说?
loop statement
循环语句的英语网络释义
c语言指令包含一些c语言中的函数的注释,有main函数,循环语句(do while),数据类型(long,double等),加上c语言的一些运算符等。改资料方便学习c语言时迅速查找变量用法。
... DO..WHILE循环只有一种形式: 6、FOR循环语句 FOR循环是PHP中最复杂的循环。象在C中一样。FOR循环的语法是: ...
生日礼物、创意礼品、创意生日礼物推荐 ... 条件语句(if elif else) 循环语句(while,for in) 函数(function) ...
循环语句的汉英大词典
循环语句
- {计} Do statement; for statement; for-loop (ALGOL用)
循环语句的英语短语
循环语句的举例for
更优化的循环语句The inhanced for loop
循环语句嵌套for
循环语句教程BOOK
循环语句一for
循环语句域DO range
循环语句的一种for
条件循环语句Do Loop
循环语句格式do loop
循环语句的英文例句
接下来,考虑无限循环语句和条件。
Next, we consider the infinite loop statement and conditionals.
SQLPL中支持以下循环语句。
The following looping statements are supported in SQL pl.
这是用for循环语句。
So here is a for loop.
循环语句将在下一章作具体讲解。
The while loop will be explained in the next chapter.
DB 2SQL过程中的循环语句。
Looping statements in DB2 SQL procedures.
对于其他任何条件或循环语句,都不可采用这种方法。
You cannot use this approach with any of the other selection or iteration statements.
循环语句(例如WHILE、LOOP)不能包含fetch语句。
Looping statements (WHILE, LOOP, for example) must not that contain FETCH statements.
通过设置循环语句的不同步长,可达到工艺要求的计量精度。
The metering accuracy required by the process can be realized by setting the different step lengths of recurring sentences.
PHP循环语句的作用是:对同一个代码块执行指定的次数。
Looping statements in PHP are used to execute the same block of code a specified number of times.
相反的,你需要编写一个小的循环语句来反复的更新视图并按帧渲染。
Instead, you'll need to code a small loop that iteratively updates the view and renders a frame.
本节介绍DB2和solidDBSQL过程在循环语句方面的差异。
This section describes the differences in the looping statements of the DB2 and solidDB SQL procedures.
Oracle还允许将游标与一个循环语句紧密地绑定在一起,形成所谓的游标FOR循环结构。
Oracle also allows cursors to be tightly bound to a looping statement, a construct called a cursor FOR loop.
相反,虽然IDSSPL也支持类似的游标循环语句,但是不允许显式地声明、打开或关闭游标。
In contrast, IDS SPL supports a similar cursor looping statement but does not allow cursors to be explicitly declared, opened, or closed.
汇编语言依序执行算术指令,而跳转指令可以通过改变程序计数器的值来执行条件语句和循环语句。
Assembly language instruction sequence perform arithmetic, and jump instruction by changing the program counter value to execute the conditional statement and circular statement.
你也能使用foreach循环语句,它会被编译为类似的代码,其充分利用了Items集合的IEnumerable接口。
You can also use a foreach loop which will be compiled into a similar code leveraging the IEnumerable interface of the Items Collection. Here is now how the new loop is executed internally.
其他有用的经验法则:一个函数如果有判断或循环语句通常是没效率的。(除非在通常的情况下循环语句或判断语句不会执行)。
Another useful rule of thumb: it's typically not cost effective to inline functions with loops or switch statements (unless, in the common case, the loop or switch statement is never executed).
用线性汇编语言重新设计程序结构优化循环语句,实现读取参考样本、滤波处理和移位裁剪算法的优化,避免重复读取同一个参考样本的情况。
This paper used the linear assembly language to re-design program structure and realized the optimization of reading reference samples, filter processing and transfer of cutting algorithm.
有了这种垂直度,就可以将语句、循环、函数、类或者是运行缓慢的库作为分析目标。
With such plumbs, you can target the statement, loop, function, class, or library that is most sluggish.
如果条件的求值结果为TRUE,那么就将执行语句列表,在循环的顶部恢复控制。
If the condition evaluates to TRUE, the statement list is executed, then control resumes at the top of the loop.
毫无疑问,最常见的调试步骤是设置断点,这样可以检查条件语句或循环内的变量和值。
Undoubtedly, the most common debugging procedure is to set breakpoints that will allow the inspection of variables and the values inside conditional statements or loops.
不幸的是,由于循环分支太接近返回语句,因此您无法预测循环分支和返回分支。
Unfortunately, because the loop branch is so close to the return statement, you cannot predict both the loop branch and the return branch.
对语句标签以及GOTO和loop语句的新支持为SPL例程中的迭代和退出语句循环提供了更大的灵活性。
The new support for statement labels and the GOTO and loop statements provide greater flexibility in iterating and in exiting from statement loops in SPL routines.
这意味着循环体中执行的程序语句必须要改变表达式的值,否则循环将无法结束。
This means the program statements executed in the loop body must change the value of the expression — or else the loop will never end.
在清单6中,循环被移出同步语句,所以它可能由多个线程并行执行。
In Listing 6, the loop is out of a synchronized block, so it can be executed by several threads in parallel.
该版本为SPL例程中的语句循环引入了新的spl语句和结构。
This release introduces the new SPL statements and constructs for statement loops in SPL routines.
语句在无限循环中运行。
A statement running in an infinite loop.
循环是通过for语句组实现的。
Looping is done via the for statement group.
Python中的第二种流控制语句是while循环,它在一个表达式计算为True时执行一个程序语句块。
The second type of flow control statement in Python is the while loop, which executes a block of program statements while an expression evaluates True.
有时候,使用这种语句比嵌套的for循环或if语句更好,可以减少重复的代码而且结构更清楚。
Using such a statement can sometimes be a better route than nested for loops or if statements to cut down on repetitive code or just for better structure.
到这时,用户可以编写shell脚本,在变量中存储信息和导出信息,控制文件描述符,控制信号处理,使用for循环和case语句,以及其他大量功能。
Now, users could write shell scripts; store and export information in variables; control file descriptors; control signal handling, for loops, and case statements; and so much more.
循环语句的原声例句
I've written a little for loop, which is going to iterate over all of the elements in the list.
让我们先看看这儿的代码,我已经写了一个循环语句,用来迭代处理数组中所有的元素。
So a loop or an infinite loop, because true is always true, there is no-- nothing on the screen that seems to change this keyword true, so this is actually a deliberate infinite loop, but so was that thing up top to forever say hi or whatever it is you wanted to do.
因此而出现死循环,屏幕上的这些语句无论怎么运行,都无法改变它为真的事实,这就是所谓的死循环,无论你想不想要,屏幕上都会不断打印出“hi“
These are things like FOR and WHILE loops.
比方说for和while循环语句。
So here is a for loop.
这是用for循环语句。
循环语句的网络释义
循环语句 在不少实际问题中有许多具有规律性的重复操作,因此在程序中就需要重复执行某些语句。一组被重复执行的语句称之为循环体,能否继续重复,决定循环的终止条件。循环结构是在一定条件下反复执行某段程序的流程结构,被反复执行的程序被称为循环体。循环语句是由循环体及循环的终止条件两部分组成的。 其中最简单的循环语句自然来源于vb语句(即visual basic)
以上关于循环语句的英语翻译来自英汉大词典,希望对您学习循环语句的英语有帮助。