什么是循环?说白了就是只要为真,就一直执行这个语句,直到为假就停止指定。
举个例子:只要变量 (i) 小于 5,循环中的代码就会一遍又一遍地运行
package test10;
public class test1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int i = 0;
while (i < 5) {
System.out.println(i);
i++;
}
}
}
运行看看:
do/while循环是的变体while循环。这个循环将执行一次代码块,在检查条件是否为真之前,只要条件为真,它就会重复循环。
循环将始终至少执行一次,即使条件为假,因为在测试条件之前执行代码块:
package test10;
public class test2 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int i = 0;
do {
System.out.println(i);
i++;
}
while (i < 5);
}
}
运行:
这样你是不是看不出区别?我们来把i改成6就知道了:
package test10;
public class test2 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int i =6;
do {
System.out.println(i);
i++;
}
while (i < 5);
}
}
运行:
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/weixin_46211269/article/details/121109140
内容来源于网络,如有侵权,请联系作者删除!