Unlike in C, where you can dynamically increase the size of an array, arrays in java are fixed in length. Why does Java allow arrays of size 0 then?
String[] strings = new String[0];
|
|
Why does Java allow arrays of size 1? Isn't it pretty useless to wrap a single value in an array? Wouldn't it be sufficient if Java only allowed arrays of size 2 or greater? Yes, we can pass But there are some good arguments against such an restriction. My personal top arguments: Restriction is too complicated and not really necessary To limit arrays to sizes [1..INTEGER.MAX_INT] we'd have to add Array models vector An array is a good data model for a vector (mathematics, not the Sidenote - a prominent wrapper for an (char-)array is the |
|||||||||||
|
|
It signifies that it is empty. I.e. you can loop over it as if it had items and have no result occur:
Thereby avoiding the need to check. If the array in question were |
|||
|
|
|
Consider this (a more detailed explanation of Noon's answer):
Now compare it to this:
This (returning empty arrays rather than null values), is in fact a best practice in Java API design world. Besides, in Java, you can covert Lists (e.g. ArrayList) to arrays and it only makes sense to convert an empty list to an empty array. |
|||
|
|
|
One case I can think of where an empty array is extremely useful is to use it instead of null in a situation where null isn't allowed. One possible example of that is a BlockingQueue of arrays. When you want to signal the end of input to the reading side, what would you do? To send null seems like an obvious choice, but the thing is that BlockingQueue doesn't accept nulls. You could wrap your array inside a class with " |
|||
|
|
|
Another case where a zero length array can be useful: To return an array containing all of the elements in a list :
A zero length array can be used to pass the type of the array into this method. For example:
A zero length array is still an instance of Object which holds zero elements. |
||||
|
|