17.5.5 Sealed methods

本文探讨了在面向对象编程中使用密封方法的概念。当一个实例方法声明包含密封修饰符时,该方法将覆盖继承的虚拟方法,并阻止派生类进一步覆盖此方法。通过具体的代码示例说明了如何使用密封修饰符。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

When an instance method declaration includes a sealed modifier, that method
is said to be a sealed method. A
sealed method overrides an inherited virtual method with the same
signature. An override method can also be
marked with the sealed modifier. Use of this modifier prevents a derived
class from further overriding the
method.
[Example: The example
using System;
class A
{
public virtual void F() {
Console.WriteLine("A.F");
}
Chapter 17 Classes
237
public virtual void G() {
Console.WriteLine("A.G");
}
}
class B: A
{
sealed override public void F() {
Console.WriteLine("B.F");
}
override public void G() {
Console.WriteLine("B.G");
}
}
class C: B
{
override public void G() {
Console.WriteLine("C.G");
}
}
the class B provides two override methods: an F method that has the sealed
modifier and a G method that does
not. B?s use of the sealed modifier prevents C from further overriding F.
end example]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值