Java使用continue語句
如何在方法中使用continue語句?
解決方法
本例使用continue語句跳出方法中的循環。
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 7lt; length; i++) { if (searchstr.charAt(i) != 'h') continue; count++; searchstr.setCharAt(i, 'h'); } System.out.println("Found " + count + " h's in the string."); System.out.println(searchstr); } }
結果
上麵的代碼示例將產生以下結果。
Found 2 h's in the string. hello how are you.