Java View all facts Glossary Help |
syntactic unit > statement > control flow statement > continue statement |
continue statement comparison table |
Subject | have example | continue at | restart |
---|---|---|---|
labelled continue statement | public int indexOf(String str, int fromIndex) { | the next iteration of the labeled loop | |
unlabelled continue statement | int count = 0; | the loop it is enclosed in |
Next control flow statement: decision making statement Up: control flow statement Previous control flow statement: break statement