Java continue statement is used to end the current loop and enter the next loop. That is, only this loop ends, not all loops end, and subsequent loops still proceed.
The following example uses the continue keyword to skip the current loop and start the next loop:
/* author by w3cschool.cc Main.java */public class Main { public static void main(String[] args) { StringBuffer searchstr = new StringBuffer( "hello how are you. "); int length = searchstr.length(); int count = 0; for (int i = 0; i < length; i++) { if (searchstr.charAt(i) != 'h') continue; count++; searchstr.setCharAt(i, 'h'); } System.out.println("发现 " + count + " 个 h 字符"); System.out.println(searchstr); }}
The output result of running the above code is:
发现 2 个 h 字符 hello how are you.
The above is the Java example - For information on the usage of the continue keyword, please pay attention to the PHP Chinese website (www.php.cn) for more related content!