91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

continue語句怎么在Java中使用

發布時間:2021-03-30 16:06:33 來源:億速云 閱讀:146 作者:Leah 欄目:編程語言

continue語句怎么在Java中使用?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

package com.yiibai;

public class UseOfContinueStatement {
  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("Found " + count + " h's in the string.");
    System.out.println(searchstr);
  }
}

執行上面示例代碼,得到以下結果 -

Found 2 h's in the string.
hello how are you.

示例2

以下是continue方法的另一個例子 -

 package com.yiibai;

public class UseOfContinueStatement2 {
  public static void main(String[] args) {
    for (int i = 1; i <= 10; i++) {
      if (i == 5) {
        continue;
      }
      System.out.println(i);
    }
  }
}

執行上面示例代碼,得到以下結果 -

1
2
3
4
6
7
8
9
10

看完上述內容,你們掌握continue語句怎么在Java中使用的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

塔城市| 弥渡县| 浮山县| 正定县| 靖西县| 鄂伦春自治旗| 萍乡市| 新田县| 广河县| 城固县| 久治县| 西安市| 汉源县| 贵溪市| 义乌市| 明星| 即墨市| 平泉县| 万山特区| 新邵县| 莱芜市| 辽阳市| 铜梁县| 西城区| 泗水县| 夹江县| 阿尔山市| 施秉县| 洛隆县| 资讯| 芜湖县| 闸北区| 丹巴县| 澎湖县| 孙吴县| 囊谦县| 泸水县| 平昌县| 玛沁县| 红河县| 祁阳县|