Files
openide/java/java-impl/resources/inspectionDescriptions/ArrayHashCode.html
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>