int count= hello.sort(scores);为什么不是int count= hello.sort(scores[]);呢

问题:

int count= hello.sort(scores);为什么不是int count= hello.sort(scores[]);呢,scores不是一个数组嘛,引用的时候不需要加[]吗?

代码:

import java.util.Arrays;


public class HelloWorld {

    public static void main(String[] args) {

HelloWorld hello = new HelloWorld();

int[] scores={79,52,98,81};

        

//调用方法,传入成绩数组,并获取成绩的个数

int count= hello.sort(scores);

        

System.out.println("共有"+count+"个成绩信息!");

}

    

/*

* 功能:将考试成绩排序并输出,返回成绩的个数

* 定义一个包含整型数组参数的方法,传入成绩数组

* 使用Arrays类对成绩数组进行排序并输出

* 方法执行后返回数组中元素的个数

*/

public int sort( int scores[]      ){

Arrays.sort(scores);

System.out.println(Arrays.toString(scores));

return scores.length;

        //返回数组中元素的个数

        

}

}


Vibratee
浏览 1408回答 1
1回答

Its_forever

这句话:int[] scores={79,52,98,81}; 相当于:int scores[]={79,52,98,81}; scores是一个数组的。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java