05_密封类
作者:互联网
1、密封类不能被继承,可以继承父类。关键字sealed
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 密封类 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 } 14 } 15 16 public sealed class Person 17 { 18 19 } 20 }示例代码
标签:05,继承,System,密封,sealed,using,class 来源: https://www.cnblogs.com/chengxunyuanxiaolv/p/16215203.html