Go language Loop statement for

Source: Internet
Author: User

Loop statements in the go language only support the FOR keyword, not the while and do-while structures.

Sum: = 0 for I: = 0; I < 10; i++ {     sum + = i}  

The notation of infinite loops:

Sum: = 0 for {     sum++      if sum >              

Multi-assignment is also supported in conditional expressions:

A: = []int{1, 2, 3, 4, 5, 6} For I, J: = 0, Len (a) –1; I < J; I, j = i + 1, j–1 {     

Using break, select which loop to interrupt:

For j: = 0; J < 5; J + + {for     I: = 0, I <; i++ {         If I > 5 {break             jloop         }     fmt. Println (i)     }} Jloop://... http://www.cnblogs.com/osfipin/

In this example, the break statement terminates the outer Loop at the Jloop label.

Go language Loop statement for

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.