溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

java中的4種循環(huán)方法分別是什么

發(fā)布時(shí)間:2021-12-08 13:24:20 來(lái)源:億速云 閱讀:138 作者:柒染 欄目:開發(fā)技術(shù)

本篇文章為大家展示了java中的4種循環(huán)方法分別是什么,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

java循環(huán)結(jié)構(gòu)

順序結(jié)構(gòu)的程序語(yǔ)句只能 被執(zhí)行一次。如果你要同樣的操作執(zhí)行多次,就需要使用循環(huán)結(jié)構(gòu)。

java中有三種主要的循環(huán)結(jié)構(gòu):
while 循環(huán)
do...while 循環(huán)
for 循環(huán)

在java5中引入一種主要用于數(shù)組的增強(qiáng)型for循環(huán)。

1.while循環(huán)

while是最基本的循環(huán),它的結(jié)構(gòu)為:

package com.example.lesson1;

//while(布爾(true/false)表達(dá)式){
//循環(huán)內(nèi)容 
//只要布爾表達(dá)式為 true 循環(huán)體就會(huì)一直執(zhí)行下去。

//來(lái)看看實(shí)例吧:
public class Test {
	public static void main(String args[]) {
		int x = 10;
		while (x < 20) {
			System.out.print("value of x :" + x);
			x++;
			System.out.print("\n");
		}
	}
}

以上實(shí)例編譯運(yùn)行結(jié)構(gòu)如下:

value of x : 10
value of x : 11
...

value of x : 19

2.do…while循環(huán)

對(duì)于while語(yǔ)句而言,如果不滿足條件,則不能進(jìn)入循環(huán)。但有時(shí)候我們需要即使不滿足條件,也至少 執(zhí)行一次。
do…while循環(huán)和while循環(huán)相同,不同的是,
do…while循環(huán)至少會(huì)執(zhí)行一次。

package com.example.lesson1;

//do{
//	//代碼語(yǔ)句
//	}while(布爾值表達(dá)式);

//	注意:布爾表達(dá)式在循環(huán)體的后面,所以語(yǔ)句塊在檢測(cè)布爾表達(dá)式之前已經(jīng)執(zhí)行了。如果布爾表達(dá)式值為true,則語(yǔ)句塊
//一直執(zhí)行,直到布爾表達(dá)式的值為false。

//	實(shí)例:
public class Test {
	public static void main(Staing args[]) {
		int x = 10;
		do {
			System.out.print("value of x :" + x);
			x++;
			System.out.print("\n");
		} while (x < 20);
	}
}

以上實(shí)例編譯運(yùn)行結(jié)果如下:

value of x : 10
...
value of x :19

3.for循環(huán)

雖然所有循環(huán)結(jié)構(gòu)都可以用while或者do…while表示,但java提供了另一種語(yǔ)句(for循環(huán)),使一些循環(huán)結(jié)構(gòu)變得更簡(jiǎn)單。

for循環(huán)執(zhí)行的次數(shù)是在執(zhí)行前就確定的。語(yǔ)法格式如下:
	//for (  1初始化;  2布爾表達(dá)式; 4更新){
			3//代碼語(yǔ)句
	//}

	//關(guān)于for循環(huán)有以下幾點(diǎn)說明:
	//1,最先執(zhí)行初始化步驟??梢月暶饕环N類型,但可初始化一個(gè)或多個(gè)循環(huán)控制變量,也可以是空語(yǔ)句。
	//2,然后,檢測(cè)布爾表達(dá)式的值。如果是true,循環(huán)體被執(zhí)行,如果是false,循環(huán)體終止,開始執(zhí)行循環(huán)后面的語(yǔ)句。
	//3,執(zhí)行一次循環(huán)后,更新循環(huán)控制變量。
	//4,再次檢測(cè)布爾表達(dá)式。循環(huán)執(zhí)行上面的過程。
	
	public class Test{
		public static void main (Staing args[ ]){
		for(int x=10;x<20;x=x+1){
		System.out.print("value of x :"+x);
		System.out.print("\n");
				}
			}
	}

編譯運(yùn)行結(jié)果如下

value of x :10
...
value of x :19

4.java 增強(qiáng)for循環(huán)

java5引入一種主要用于數(shù)組的增強(qiáng)型rot循環(huán)。
java增強(qiáng)for循環(huán)語(yǔ)法格式如下:

	for(聲明語(yǔ)句:表達(dá)式){
		//代碼句子
	}
	
//聲明語(yǔ)句:聲明新的局部變量,該變量的類型必須和數(shù)組元素的類型匹配。其作用域限定在循環(huán)語(yǔ)句塊
//其值與此時(shí)數(shù)組元素的值相等。
//表達(dá)式:表達(dá)式是要訪問的數(shù)組名,或者是返回值為數(shù)組的方法。

//實(shí)例:
public class test {
	public static void main(String args[]) {
		int[] numbers = { 10, 20, 30, 40, 50 };
		for (int x : numbers) {
			System.out.print(x);
			System.out.print(",");
		}
		System.out.print("\n");
		String[] names = { "James", "Larry", "Tom", "Lacy" };
		for (String name : names) {
			System.out.print(name);
			System.out.print(",");
		}
	}
}

編譯運(yùn)行如下:

10,20,30,40,50,
James,Larry,Tom,Lacy,

break關(guān)鍵字

break主要用在循環(huán)語(yǔ)句或者switch語(yǔ)句中,用來(lái)跳出整個(gè)語(yǔ)句塊。
break跳出最里面的循環(huán),并且繼續(xù)執(zhí)行該循環(huán)下面的語(yǔ)句。

break實(shí)例:

public class Test {
   public static void main(String args[]) {
      int [] numbers = {10, 20, 30, 40, 50};
 
      for(int x : numbers ) {
         // x 等于 30 時(shí)跳出循環(huán)
         if( x == 30 ) {
            break;
         }
         System.out.print( x );
         System.out.print("\n");
      }
   }
}

以上實(shí)例編譯運(yùn)行結(jié)果如下:

10
20

continue 關(guān)鍵字

continue 適用于任何循環(huán)控制結(jié)構(gòu)中。作用是讓程序立刻跳到下一次循環(huán)的迭代。
在for循環(huán)中,continue語(yǔ)句使程序立即跳轉(zhuǎn)到更新語(yǔ)句。
在while或者do...while循環(huán)中,程序立即跳轉(zhuǎn)到布爾表達(dá)式的判斷語(yǔ)句。

continue 實(shí)例:

public class Test {
   public static void main(String args[]) {
      int [] numbers = {10, 20, 30, 40, 50};
 
      for(int x : numbers ) {
         if( x == 30 ) {
        continue;
         }
         System.out.print( x );
         System.out.print("\n");
      }
   }
}

以上實(shí)例編譯運(yùn)行結(jié)果如下:

10
20
40
50

上述內(nèi)容就是java中的4種循環(huán)方法分別是什么,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI