How to store an array returned by a method in Java

47,253

Solution 1

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.

Solution 2

int[] x = method();

Solution 3

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)

Solution 4

If you want to duplicate the array, you can use [this API][1]:

http://java.sun.com/javase/6/docs/api/java/util/Arrays.html#copyOf(int[], int)

Solution 5

Try :-

int arr[]=mymethod();

//caling method it stores in array

public int[] mymethod()
{

   return arr;

}
Share:
47,253
Mohammad Sepahvand
Author by

Mohammad Sepahvand

Updated on February 24, 2020

Comments

  • Mohammad Sepahvand
    Mohammad Sepahvand about 4 years

    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?