Files
openide/java/java-impl/resources/inspectionDescriptions/InterfaceMethodClashesWithObject.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
748 B
HTML

<html>
<body>
Reports interface methods that clash with the <b>protected</b> methods <code>clone()</code> and <code>finalize()</code> from the <code>java.lang.Object</code> class.
<p>In an interface, it is possible to declare these methods with a return type that is incompatible with the <code>java.lang.Object</code> methods.
A class that implements such an interface will not be compilable.
When the interface is functional, it remains possible to create a lambda from it, but this is not recommended.</p>
<p>Example:</p>
<pre><code>
// Warning: this interface cannot be implemented
// by any class, only by a lambda or method reference
interface MyInterface {
double clone();
}
</code></pre>
<!-- tooltip end -->
</body>
</html>