码迷,mamicode.com
首页 > 编程语言 > 详细

9 数组2 for-each 增强型循环

时间:2019-12-26 11:18:29      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:ack   结果   for_each   for   http   sys   输出   print   col   

package com.wys.java;

public class foreachDemo {
    public static void main(String[] args) {
        double[] myList = {1.0, 2.0, 3.0, 4.0, 5.0};
        //用for_each 输出所有元素
        for(double element: myList){
            System.out.println(element);
        }
    }
}

结果:

技术图片

9 数组2 for-each 增强型循环

标签:ack   结果   for_each   for   http   sys   输出   print   col   

原文地址:https://www.cnblogs.com/CPU-Easy/p/12100943.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!