Difference between revisions of "UM:NetXMS Scripting Language (NXSL)"

Jump to navigation Jump to search
Line 377: Line 377:


== do-while ==
== do-while ==
''do-while'' loops are very similar to ''while'' loops, except the truth expression is checked at the end of each iteration instead of in the beginning. The main difference from regular ''while'' loops is that the first iteration of a ''do-while'' loop is guaranteed to run (the truth expression is only checked at the end of the iteration), whereas it may not necessarily run with a regular ''while'' loop (the truth expression is checked at the beginning of each iteration, if it evaluates to FALSE right from the beginning, the loop execution would end immediately).  
''do-while'' loops are very similar to ''while'' loops, except the truth expression is checked at the end of each iteration instead of in the beginning. The main difference from regular ''while'' loops is that the first iteration of a ''do-while'' loop is guaranteed to run (the truth expression is only checked at the end of the iteration), whereas it may not necessarily run with a regular ''while'' loop (the truth expression is checked at the beginning of each iteration, if it evaluates to FALSE right from the beginning, the loop execution would end immediately).


== for ==
== for ==
683

edits

Navigation menu