Java 中带参带返回值方法的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 中带参带返回值方法的使用相关的知识,希望对你有一定的参考价值。
public class mains {
public static void main(String[] args) {
mains hello = new mains();
int[] scores={79,52,98,81};
hello.sort(scores);
System.out.println("第一"+hello.sort(scores));
//调用方法,传入成绩数组,并获取成绩的个数
//int count= hello.sort(scores);
// System.out.println(hello.sort(scores));
//System.out.println("共有"+count+"个成绩信息!");
}
/*
* 功能:将考试成绩排序并输出,返回成绩的个数
* 定义一个包含整型数组参数的方法,传入成绩数组
* 使用Arrays类对成绩数组进行排序并输出
* 方法执行后返回数组中元素的个数
*/
public int sort(int scores[]){
Arrays.sort(scores);
System.out.println("第二"+Arrays.toString(scores));
//返回数组中元素的个数
return 1;
}
}
以上是关于Java 中带参带返回值方法的使用的主要内容,如果未能解决你的问题,请参考以下文章