Java / Modifiers
How do I prevent my class to be not inherited.
Declare your class as final. A class declared as final can't be extended by any other class.
More Related questions...
Declare your class as final. A class declared as final can't be extended by any other class.
More Related questions...