mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
13 lines
397 B
HTML
13 lines
397 B
HTML
<html>
|
|
<body>
|
|
Reports suspicious array casts.
|
|
An array cast is considered suspicious when it casts to a more specific array type. Such a cast is legal at compile
|
|
time but may fail with a <code>ClassCastException</code> at runtime.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
Number[] numbers = new Number[]{1L, 2L, 4L};
|
|
Long[] longs = (Long[])numbers;
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |