| Author |
Pass 2D array between methods
|
Ralph King
Greenhorn
Joined: Sep 05, 2011
Posts: 1
|
|
all,
I am struggling to pass my 2D array between classes. The following getMethod should return a valid 2D array:
public String[][] getResults(){
return (resultSet);
}
However when i try to access from another class my first attempts fall woefully short:
String test[][]=newData.getResults();
When I try to access elements they are all null. how do i accomplish this?
All help very welcome.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
Welcome to the Ranch!
Where and how have you initialized resultSet?
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32708
|
|
Welcome again
I am afraid I am going pedantic: there is no such thing in Java™ as a 2D array. There are arrays of arrays, however.
|
 |
 |
|
|
subject: Pass 2D array between methods
|
|
|