class Array_loop {
public static void main(String[] args) {
int[] arr = {7,9,8,6,5};
loop(arr);
/*for (int x =0;x<6 ;x++ ) {
System.out.println(arr[x]); //注意写完一个语句一定要加;
}
*/
}//刚开始这个大括号被我注释掉了。就导致了没有了第一个主函数提示缺少class
//用方法引用
public static void loop(int[] arr){
for (int x = 0;x<arr.length ;x ++ ) {
System.out.println(arr[x]);
}
}
|
|