| Author |
Array place getting null itself
|
Pan Niko
Ranch Hand
Joined: Mar 19, 2011
Posts: 86
|
|
Hello,
i have 2D array and initialise it with nested loop. More specific in place array[11][2] initialise it as element of another class i created. Now if i use system.out to print this place after the end of loop, content is ok, but if i print it in a method i created is null!!! Im not doing anything in that place in that method, just system.out. Any idea???
thank you
EDIT: Noticed that in method all elements of the array are NULL.Why? when that happens?
|
 |
Wim Vanni
Ranch Hand
Joined: Apr 06, 2011
Posts: 96
|
|
Without seeing any code I can think of a few possible causes:
- scope
- assignment going wrong
- ..
Wim
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 9939
|
|
it is impossible to say without seeing your code. Clearly you are doing something wrong, or not doing something right. So please post what you have (and only the relevant part please!!!).
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
Hunter McMillen
Ranch Hand
Joined: Mar 13, 2009
Posts: 490
|
|
If all the elements of your array or null it seems like your initializing the array incorrectly. Look through the Java array tutorial and see if that helps you figure it out.
http://download.oracle.com/javase/tutorial/java/nutsandbolts/arrays.html
Hunter
|
"If the facts don't fit the theory, get new facts" --Albert Einstein
|
 |
 |
|
|
subject: Array place getting null itself
|
|
|