أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
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.