Is there any way in java to return a new array without assigning it first to a variable? Here is an example:
public class Data { private int a; private i
You been to construct the object that the function is returning, the following should solve your issue.
public int[] getData() { return new int[]{a,b,c,d}; }
hope this helps