are these two the same things?
for(int i=0; i<array.length; i++){
array[i] = null;
}
and
array = null;
|
|
|
No, the first one makes each element of the array null, the length of the array will still be array.length, the second will set the array variable to null. |
|||
|
|
|
A small snippet to show the difference:
|
|||||||
|
|
No, it is not the same. As a matter of fact, for the first snippet of code to run correctly, the array variable should be declared and initialized like this (for example)
This creates an array of 5 elements with each element having a Once you have this, in the first example what you are doing is assigning a null value to each of the array ->
By doing array -> null |
|||
|
|
|
Not at all. In the first case you're setting all the references in your array to null. In the second case you're setting the very reference to the array itself to null. |
|||
|
|