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

java基础[04]

时间:2021-04-14 12:36:49      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ati   str   public   元素   numbers   rgs   number   循环   python   

增强for循环

public class ForDemo{
	public static void main(String[] args){
		int[] numbers = {10,20,30,40,50};
		//遍历数组元素
		for(int x:numbers){
		System.out.println(x);
		
		}
	}

}

输出得到

10

20

30

40

50

等价于python的:for i in numbers

java基础[04]

标签:ati   str   public   元素   numbers   rgs   number   循环   python   

原文地址:https://www.cnblogs.com/face-every/p/14656271.html

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