Register now or log in to join your professional community.
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.