51 lines
955 B
Plaintext
51 lines
955 B
Plaintext
== Why is this an issue?
|
|
|
|
According to the Java Language Specification:
|
|
|
|
|
|
____
|
|
For compatibility with older versions of the Java SE platform,
|
|
|
|
the declaration of a method that returns an array is allowed to place (some or all of) the empty bracket pairs that form the declaration of the array type after the formal parameter list.
|
|
|
|
This obsolescent syntax should not be used in new code.
|
|
|
|
____
|
|
|
|
|
|
=== Noncompliant code example
|
|
|
|
[source,java]
|
|
----
|
|
public int getVector()[] { /* ... */ } // Noncompliant
|
|
|
|
public int[] getMatrix()[] { /* ... */ } // Noncompliant
|
|
----
|
|
|
|
|
|
=== Compliant solution
|
|
|
|
[source,java]
|
|
----
|
|
public int[] getVector() { /* ... */ }
|
|
|
|
public int[][] getMatrix() { /* ... */ }
|
|
----
|
|
|
|
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|