问题:
基础接口:
IBase
后人:
InterfaceA extends IBase<Interface1>
InterfaceB extends IBase<Interface2>
当我尝试:
InterfaceC extends InterfaceA, InterfaceB
我收到编译错误:
The interface IBase cannot be implemented more than once with different arguments
是否存在解决方法?谢谢。