Java迴圈結構

來源:互聯網
上載者:User

標籤:static   class   logs   while   blog   for   bool   ...   main   

迴圈結構

     3.1  for(初始值;條件;增量){

 

             執行語句

          }

      3.2 while(條件){

執行語句

          }

       3.3 do{

            執行語句

               }while(條件);

 

for迴圈中該變數隨著迴圈結束而從記憶體消亡,

while迴圈中卻可以繼續存在並使用,也就是還在記憶體中並未消亡。

 

※明確執行次數for , 不知道執行次數while ,至少執行一次do...while

continue:跳出當次迴圈

break: 跳出迴圈

return:程式終止

goto:Java中有但不去使用

無限迴圈:

Booleanb=true;

While(b){

   xxxxxxxxxx

  // b=false或break  退出迴圈

}

 1 /**迴圈結構*/ 2  3 public class Demo07{ 4     public static void main(String []args){ 5  6         //for  迴圈(明確執行次數) 7         for(int i=1;i<=10;i++){ 8             if(i==3){ 9             }10             System.out.println("for迴圈:"+i);11         }12 13         //while 迴圈(不知道執行次數)14         int j =1;15         while(j<=10){16             System.out.println("while迴圈:"+j);17             j++;18         }19 20         //do...while迴圈(至少執行一次)21         int k = 1;22         do{23             System.out.println("do...while迴圈:"+k);24             k++;25         }while(k<=10);26     }27 }

 

Java迴圈結構

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.