+ 1
SEALED
if a class is sealed does not mean that the class it self cannot inherit from another class , but means other classes cannot inherit from it
1 Answer
0
Yes, sealed classes can inherit another non-sealed class. But other classes cannot inherit from it.