I have this
String p[] = null;
I need to check whether its size/length is null or not. Something like
if (p.length == null)
But it does not work.
|
I have this
I need to check whether its size/length is
But it does not work. |
||||
|
|
|
You cannot check length of
Or just instantiate it instead of keeping it
Then you can do:
See also: |
|||||||
|
the length value is calculated from the size of the array. If the array is null, then just check the object and not the length. |
|||
|
|
A null reference does not have a length. Any attempt to access any of its members will result in a An array object has a length of type Perhaps you want to do this:
Since |
|||
|
Usage pattern:
Returns |
|||
|
|
|
If you want to check the size of an array, I'd recommend using Array.getLength(yourArray). In this instance, it would throw a |
|||
|
|
|
if a reference is null, you can't do any operations on it like accessing its methods. what i think you really need is
|
|||
|
|
You can't check a You can initialize this as
Then once you've initialized this you can call |
|||