Files
openide/java/java-impl/resources/inspectionDescriptions/ArrayHashCode.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

17 lines
515 B
HTML

<html>
<body>
Reports incorrect hash code calculation for arrays.
<p>In order to
correctly calculate the hash code for an array, use:</p>
<ul>
<li><code>Arrays.hashcode()</code> for linear arrays</li>
<li><code>Arrays.deepHashcode()</code> for multidimensional arrays</li>
</ul>
These methods should also be used with <code>Objects.hash()</code> when
the sequence of input values includes arrays, for example:
<code>Objects.hash(string, Arrays.hashcode(array))</code>
<!-- tooltip end -->
<p>
</body>
</html>