美文网首页
2018-02-02

2018-02-02

作者: hothome99 | 来源:发表于2018-02-07 14:25 被阅读0次

    Control Flow Statements

    The statements inside your source files are generally executed from top to bottom, in the order that they appear. Control flow statements, however, break up the flow of execution by employing decision making, looping, and branching, enabling your program to conditionally execute particular blocks of code. This section describes the decision-making statements (if-then, if-then-else, switch), the looping statements (for, while, do-while), and the branching statements (break, continue, return) supported by the Java programming language.

    相关文章

      网友评论

          本文标题:2018-02-02

          本文链接:https://www.haomeiwen.com/subject/dmryzxtx.html