Java中如何存储方法返回的数组

发布于 2024-08-24 05:06:26 字数 165 浏览 4 评论 0原文

我想将方法​​返回的数组存储到另一个数组中。我该怎么做?

public int[] method(){
    int z[] = {1,2,3,5};
    return z;
}

当我调用这个方法时,如何将返回的数组(z)存储到另一个数组中?

I want to store the array returned by a method into another array. How can I do this?

public int[] method(){
    int z[] = {1,2,3,5};
    return z;
}

When I call this method, how can I store the returned array (z) into another array?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

空心↖ 2024-08-31 05:06:26
public int[] method() {
    int z[] = {1,2,3,5};
    return z;
}

上面的方法不返回数组解析,而是返回对数组的引用。在调用函数中,您可以在另一个引用中收集此返回值,例如:

int []copy = method();

此后 copy 还将引用 z 之前引用的同一数组。

如果这不是您想要的,并且您想要创建数组的副本,则可以使用 System.arraycopy 创建副本。

public int[] method() {
    int z[] = {1,2,3,5};
    return z;
}

The above method does not return an array par se, instead it returns a reference to the array. In the calling function you can collect this return value in another reference like:

int []copy = method();

After this copy will also refer to the same array that z was refering to before.

If this is not what you want and you want to create a copy of the array you can create a copy using System.arraycopy.

娇柔作态 2024-08-31 05:06:26
int[] x = method();
int[] x = method();
北恋 2024-08-31 05:06:26

int[] anotherArray = 方法();

您想制作该阵列的另一个物理副本吗?

然后使用

System.arraycopy(Object src,  int  srcPos, Object dest, int destPos, int length)

int[] anotherArray = method();

Do you want to make another physical copy of the array ?

Then use

System.arraycopy(Object src,  int  srcPos, Object dest, int destPos, int length)
最丧也最甜 2024-08-31 05:06:26

尝试 :-

int arr[]=mymethod();

//caling method it stores in array

public int[] mymethod()
{

   return arr;

}

Try :-

int arr[]=mymethod();

//caling method it stores in array

public int[] mymethod()
{

   return arr;

}
我三岁 2024-08-31 05:06:26

如果要复制数组,可以使用 copyOf()

If you want to duplicate the array, you can use copyOf().

满栀 2024-08-31 05:06:26

你确定一定要复印吗?

int[] myArray = method();  // now myArray can be used 

Are you sure you have to copy?

int[] myArray = method();  // now myArray can be used 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文