1、 sealed关键字
在一个类中使用 sealed 修饰符时,此修饰符会阻止其他类从该类继承。类似于Java中final关键字,就是当一个类使用了sealed修饰符时,这个类不会被其他类继承。
在下面的示例中,类 B 可以继承类A,但是任何类都不能继承类B
class T { }
sealed class S:T { }
S属于密封类,禁止继承
2、 sealed 修饰方法或属性,防止子类重写特定的虚方法或虚属性,必须搭配override使用!
1)sealed是对虚方法或虚属性,也就是同override一起使用,如果不是虚方法或虚属性会报出错误:cannot be sealed because it is not an override