java中如何返回四维数组_如何从Java中的方法返回数组?

我们可以从Java中的方法返回Java中的数组。在这里,我们有一个createArray()方法,通过从用户那里获取值来动态创建一个数组并返回创建的数组。

示例import java.util.Arrays;

import java.util.Scanner;

public class ReturningAnArray {

public int[] createArray() {

Scanner sc = new Scanner(System.in);

System.out.println("Enter the size of the array that is to be created:: ");

int size = sc.nextInt();

int[] myArray = new int[size];

System.out.println("Enter the elements of the array ::");

for(int i=0; i

myArray[i] = sc.nextInt();

}

return myArray;

}

public static void main(String args[]) {

ReturningAnArray obj = new ReturningAnArray();

int arr[] = obj.createArray();

System.out.println("Array created is :: "+Arrays.toString(arr));

}

}

输出结果Enter the size of the array that is to be created::

5

Enter the elements of the array ::

23

47

46

58

10

Array created is :: [23, 47, 46, 58, 10]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值