Hi All,
Is there a way in
Java where we can achieve multiple inheritance, for example
ClassA has a method aMethodA();
ClassB has a method aMethodB();
I want ClassC to inherit these two methods aMethodA() as well as aMethodB(). Is there a way we can do that except with interfaces, because we cannot provide default behaviour for interface methods.
Thanks & Regards,
Ganesh.