位置:首页 > Java技术 > java实例在线教程 > Java使用continue语句

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.