mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
515 B
HTML
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>
|