Just noticed in ByteArrayOutputStream, the toByteArray() is declared as,
public synchronized byte toByteArray()[];
What's the difference between this declaration and the following one?
public synchronized byte[] toByteArray();
|
|
In this case, none. If you had declarations:
then |
|||
|
|
|
There is no difference, though convention amongst programmers strongly prefers the latter. |
|||
|
|
|
Java coding conventions document recommends the second variant (byte[] b). See example. |
|||
|
|
|
BTW, for multidimensional arrays you can also mix both approaches:
|
|||||
|
|