以后遇到数组是不是也是通过这个方法来确定长度呢?
2 回答
已采纳
大咪
TA贡献785条经验 获得超332个赞
package com.heheda; import java.util.Arrays; public class helloworld { public static void main(String[] args) { helloworld hello = new helloworld();//创建实例化对象 int[] nums = hello.getArrays(8);//8是数组的长度,一共从你定义方法得到8个数 System.out.println(Arrays.toString(nums));//打印输出在控制台 } //你自己定义得到数组的方法,传的参数为整数 public int[] getArrays(int length){ int[] nums = new int[length];//创建数组 //循环遍历,将小于100的数每次遍历存入nums中 for(int i=0;i < nums.length;i++){ nums[i] = (int)(Math.random()*100); } //返回nums return nums; } }
注释都给你写了,自己看下
添加回答
举报
0/150
提交
取消