为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

Vibratee 2016-04-10 19:35:16
问题: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;        //返回数组中元素的个数         }}
查看完整描述

1 回答

已采纳
?
Its_forever

TA贡献361条经验 获得超328个赞

这句话:int[] scores={79,52,98,81};
相当于:int scores[]={79,52,98,81};
scores是一个数组的。
查看完整回答
反对 回复 2016-04-10
  • 1 回答
  • 0 关注
  • 1407 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信