Implementing an Interface的几个问题?
A legal nonabstract implementing class has the following properties:
1)It must not declare any new checked exceptions for an implementation
method.
2)It must not declare any checked exceptions that are broader than the
exceptions declared in the interface method.
3)It may declare runtime exceptions on any interface method
implementation regardless of the interface declaration.
4)It must maintain the exact signature and return type of the methods it
implements (but does not have to declare the exceptions of the interface).
对于这4条不是很明白。checked exceptions是什么意思?这4条分别如何理解?
谢谢