rspec/rules/S1195/java/rule.adoc

39 lines
804 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
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.
____
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
public int getVector()[] { /* ... */ } // Noncompliant
public int[] getMatrix()[] { /* ... */ } // Noncompliant
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
public int[] getVector() { /* ... */ }
public int[][] getMatrix() { /* ... */ }
----
ifdef::env-github,rspecator-view[]
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]