Java の continue ステートメントは、現在のループを終了して次のループに入るために使用されます。つまり、すべてのループが終了するわけではなく、このループのみが終了し、後続のループは継続します。
次の例では、 continue キーワードを使用して、現在のループをスキップし、次のループを開始します。
/* 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); }}
上記のコードを実行した出力結果は次のとおりです。
发现 2 个 h 字符 hello how are you.
上記は、Java の example- continue キーワードの使用法です。詳細については、PHP 中国語 Web サイト (www.php.cn) をフォローしてください。