A Jáva míg hurok a program egy részének ismételt iterálására szolgál, amíg a megadott logikai feltétel igaz nem lesz. Amint a logikai feltétel hamissá válik, a ciklus automatikusan leáll.
A while ciklus ismétlődő if utasításnak tekinthető. Ha az iterációk száma nem rögzített, akkor javasolt a while használata hurok .
Szintaxis:
while (condition){ //code to be executed I ncrement / decrement statement }
A do-while ciklus különböző részei:
1. Feltétel: Ez egy tesztelt kifejezés. Ha a feltétel igaz, a ciklustörzs végrehajtásra kerül, és a vezérlés frissíti a kifejezést. Amikor a feltétel hamis lesz, kilépünk a while ciklusból.
Példa :
én<=100< p>
2. Kifejezés frissítése: Minden alkalommal, amikor a ciklustörzs végrehajtódik, ez a kifejezés növeli vagy csökkenti a ciklusváltozót.
Az android process acore folyamatosan leáll
Példa:
i++;
A Java While Loop folyamatábrája
Itt az a fontos a while ciklusnál, hogy néha nem is fut le. Ha a tesztelendő feltétel false-t eredményez, a ciklustörzs kimarad, és a while ciklus utáni első utasítás végrehajtásra kerül.
Példa:
Az alábbi példában egész számokat írunk ki 1-től 10-ig. A for ciklustól eltérően külön kell inicializálnunk és növelnünk kell a feltételben használt változót (itt i). Ellenkező esetben a ciklus végtelenül fog futni.
MígPélda.java
public class WhileExample { public static void main(String[] args) { int i=1; while(i<=10){ system.out.println(i); i++; } < pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> 1 2 3 4 5 6 7 8 9 10 </pre> <h2>Java Infinitive While Loop</h2> <p>If you pass <strong>true</strong> in the while loop, it will be infinitive while loop.</p> <p> <strong>Syntax:</strong> </p> <pre> while(true){ //code to be executed } </pre> <p> <strong>Example:</strong> </p> <p> <strong>WhileExample2.java</strong> </p> <pre> public class WhileExample2 { public static void main(String[] args) { // setting the infinite while loop by passing true to the condition while(true){ System.out.println('infinitive while loop'); } } } </pre> <p> <strong>Output:</strong> </p> <pre> infinitive while loop infinitive while loop infinitive while loop infinitive while loop infinitive while loop ctrl+c </pre> <p>In the above code, we need to enter Ctrl + C command to terminate the infinite loop.</p> <hr></=10){>
Java Infinitive While Loop
Ha átmegy igaz a while ciklusban infinitív while ciklus lesz.
Szintaxis:
while(true){ //code to be executed }
Példa:
MígPélda2.java
public class WhileExample2 { public static void main(String[] args) { // setting the infinite while loop by passing true to the condition while(true){ System.out.println('infinitive while loop'); } } }
Kimenet:
infinitive while loop infinitive while loop infinitive while loop infinitive while loop infinitive while loop ctrl+c
A fenti kódban a Ctrl + C parancsot kell beírnunk a végtelen ciklus befejezéséhez.
azure előfizetés
=10){>=100<>