8.12. Scala do…while cycle

发布时间 : 2025-10-25 13:35:11 UTC      

Page Views: 19 views

Not like the while loop tests the loop condition in the loop header, inthe Scala language do...while a loop checks its condition at the end of the loop.

do...while cycle and the while loop is similar, but the do...while loop ensures that the loop is executed at least once.

8.12.1. Grammar #

In Scala language the while syntax of the loop:

do { statement(s); } while( condition ); 

8.12.2. Flow chart #

Image0

Notice that the conditional expression appears at the end of the loop, so the statement(s) will be executed at least once before the conditionis tested.

If the condition is the true control flow will jump back to the above do and then re-execute the statement(s) .

This process is repeated over and over again until a given condition becomes``false`` so far.

8.12.3. Example #

Example #

object Test { def main(args: Array[String]) { // local variable var a = 10; // do loop do{ println( "Value of a: " + a ); a = a + 1; }while( a < 20 ) } } 

The output result of executing the above code is:

$ scalac Test.scala $ scala Test value of a: 10 value of a: 11 value of a: 12 value of a: 13 value of a: 14 value of a: 15 value of a: 16 value of a: 17 value of a: 18 value of a: 19 
《地理信息系统原理、技术与方法》  97

最近几年来,地理信息系统无论是在理论上还是应用上都处在一个飞速发展的阶段。 GIS被应用于多个领域的建模和决策支持,如城市管理、区划、环境整治等等,地理信息成为信息时代重要的组成部分之一; “数字地球”概念的提出,更进一步推动了作为其技术支撑的GIS的发展。 与此同时,一些学者致力于相关的理论研究,如空间感知、空间数据误差、空间关系的形式化等等。 这恰好说明了地理信息系统作为应用技术和学科的两个方面,并且这两个方面构成了相互促进的发展过程。