Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
Yes it is possible to inherit a class without using extends keyword in Java. For eg in the anonymous classes , such as
Foo foo = new Foo(){ // some method implemented in here. };
Which can extend a class without extends.