C#break, continue, return difference explanation [reprint]

Source: Internet
Author: User

C # Programming syntax break, continue, return these three commonly used keyword learning is very useful for our programming development, then this article will introduce you to break, continue, return the specific syntax specification.

C # Programming syntax we will encounter break, continue, return these three commonly used keywords, then about the use of these three keywords specific operation is what? What are the rules that we need to be aware of and understand when we use these three keywords? Let's start by introducing:

One, the C # programming syntax break statement:

The break statement causes the running program to immediately exit the loop that is contained in the inner layer or exit a switch statement. Since it is used to exit a loop or switch statement, this form of break statement is valid only if it appears in these statements.

If the termination condition of a loop is very complex, it is much easier to use the break statement to implement certain conditions than to express all the conditions with a loop expression.

 for (var i=1; i<=; i++if(i==6break   ; // output Result: 12345

Second, C # programming syntax continue statement:

The continue statement is similar to the break statement. What's different is that it's not quitting a loop, but starting a new iteration of the loop.

The continue statement can only be used in the loop body of a while statement, Do/while statement, for statement, or For/in statement, and will cause an error in other places!

 for (var i=1; i<=; i++if(i==6continue;    // output Result: 1234578910

Third, C # programming syntax return statement:

The return statement is used to specify the value returned by the function. The return statement can only appear in the function body, and anywhere else in the code will cause a syntax error!

When you execute a return statement, the function execution stops even if there are other statements in the body of the function!

Break in C # programming syntax, continue, return the use of the three commonly used keywords to introduce you here, I hope you understand and learn to break, continue, return the use of the three commonly used keywords helpful.

C#break, continue, return difference explanation [reprint]

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.