vote up 0 vote down star

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();
flag

3  
Dup of stackoverflow.com/questions/129178/… – skaffman Sep 4 at 16:25
1  
Not a dup, the horrible syntax for array return types is new here. I wouldn't have imagined this could be legal Java. – starblue Sep 4 at 20:30

3 Answers

vote up 3 vote down check

In this case, none.

If you had declarations:

byte[] a, b;
byte c[], d;

then a, b, and c are byte[], and d is byte.

link|flag
vote up 0 vote down

Java coding conventions document recommends the second variant (byte[] b). See example.

link|flag
vote up 3 vote down

There is no difference, though convention amongst programmers strongly prefers the latter.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.