猿问

int[] nums = hello.getArray(8);8是指数组长度吗?


以后遇到数组是不是也是通过这个方法来确定长度呢?

慕粉1473300781
浏览 2026回答 2
2回答

大咪

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; } }注释都给你写了,自己看下

_潇潇暮雨

抱歉刚刚看错了。
随时随地看视频慕课网APP

相关分类

Java
我要回答