0
When we declare a class as final does it mean that we cannot create its subclasses or it cannot be the subclass of another class?
2 ответов
0
a final class cannot be extended by any other class, in other words a final class cannot have any subclass.
0
We can not create its subclasses