How do I return an array of objects in java?
How do I return a开发者_JS百科n array of objects in java?
Well, you can only actually return an array of references to objects - no expressions in Java actually evaluate to objects themselves. Having said that, returning an array of Object references is easy:
public Object[] yourMethod()
{
Object[] array = new Object[10];
// Fill array
return array;
}
(To be utterly pedantic about it, you're returning a reference to an array of object references.)
public Object[] myMethod() {
Object[] objectArray = new Object[3];
return objectArray;
}
Simple enough, really.
Answers posted earlier solves your problem perfectly ... so just for sake of another choice .. i will suggest you to use List
: may be ArrayList<Object>
so it could go as :
public List<Object> getListOfObjects() {
List<Object> arrayList = new ArrayList<Object>();
// do some work
return arrayList;
}
Good luck;
What is the data structure that you have?
- If it is an array - just return it.
- If it is a Collection - use
toArray()
(or preferablytoArray(T[] a)
).
Try the following example,
public class array
{
public static void main(String[] args)
{
Date[] a = new Date [i];
a[0] = new Date(2, "January", 2005);
a[1] = new Date(3, "February", 2005);
a[2] = new Date(21, "March", 2005);
a[3] = new Date(28, "April", 2005);
for (int i = a.length - 1; i >= 0; i--)
{
a.printDate();
}
}
}
class Date
{
int day;
String month;
int year;
Date(int d, String m, int y)
{
day = d;
month = m;
year = y;
}
public void printDate()
{
System.out.println(a[i]);
}
}
try this
public ArrayList<ObjectsType> fName(){
ArrayList<ObjectsType>objectsList=new ArrayList<>();
objectList.add(objets);
return objectList;
}
Returning an object array has been explained above, but in most cases you don't need to. Simply pass your object array to the method, modify and it will reflect from the called place. There is no pass by value in java.
精彩评论