java中遍历数组的方法
Posted auterman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中遍历数组的方法相关的知识,希望对你有一定的参考价值。
1:与c语言相同,定义一个下标从0开始遍历
for(int i=0 ; i<a.length() ; i++){ System.out.print(a[i]+ " "); }
2: 定义一个num作为数组nums的其中一个元素,输出时便会自动从头到尾遍历
for ( int num :nums ) { System.out.print(num + " "); }
以上是关于java中遍历数组的方法的主要内容,如果未能解决你的问题,请参考以下文章