ToB企服应用市场:ToB评测及商务社交产业平台

标题: java循环方法 while,do while,for循环的示例分享 [打印本页]

作者: 去皮卡多    时间: 2022-8-9 14:43
标题: java循环方法 while,do while,for循环的示例分享
转自:
http://www.java265.com/JavaJingYan/202206/16557744573791.html
循环:
 是指沿着某条搜索路线,依次对树(或图)中每个节点均做一次访问。访问结点所做的操作依赖于具体的应用问题, 具体的访问操作可能是检查节点的值、更新节点的值等。不同的遍历方式,其访问节点的顺序是不一样的。遍历是二叉树上最重要的运算之一,是二叉树上进行其它运算之基础。当然遍历的概念也适合于多元素集合的情况,如数组
循环可遍历数据,根据条件对集合中的数据进行循环
下文笔者通过示例的方式,讲述while,do while,for循环的示例分享,如下所示
while循环
  1. public class Test {
  2.    public static void main(String args[]) {
  3.       int x = 8;
  4.       while( x < 10 ) {
  5.          System.out.print("x值 : " + x );
  6.          x++;
  7.          System.out.print("\n");
  8.       }
  9.    }
  10. }
复制代码
do…while 循环
  1. public class Test {
  2.    public static void main(String args[]){
  3.       int x = 8;
  4.       do{
  5.          System.out.print("x 值: " + x );
  6.          x++;
  7.          System.out.print("\n");
  8.       }while( x < 10 );
  9.    }
  10. }
复制代码
for循环
  1. public class Test {
  2.    public static void main(String args[]) {
  3.       for(int x = 8; x < 10; x = x+1) {
  4.          System.out.print("x 值 : " + x );
  5.          System.out.print("\n");
  6.       }
  7.    }
  8. }
复制代码
Java 增强for循环
  1. public class Test {
  2.    public static void main(String args[]){
  3.       int [] numbers = {88,99,10,111,222};
  4.       for(int x : numbers ){
  5.          System.out.print( x );
  6.          System.out.print(",");
  7.       }
  8.       System.out.print("\n");
  9.       String [] names ={"java265", "java265.com", "java265.com-2", "java265.com-3"};
  10.       for( String name : names ) {
  11.          System.out.print( name );
  12.          System.out.print(",");
  13.       }
  14.    }
  15. }
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4