Java View all facts Glossary Help |
syntactic unit > statement > control flow statement > break statement > unlabelled break statement |
unlabelled break statement comparison table |
Subject | have example | is a kind of | jump |
---|---|---|---|
break statement | control flow statement | ||
unlabelled break statement | //Without a label the break statement exits the inner loop and resumes execution with the outer loop | break statement | outside the nearest loop to an enclosing loop or to the next statement outside the loop |
Next break statement: labelled break statement Up: break statement