密封类和部分类
1.密封类
sealed关键字修饰class类,不能被继承。
2. 部分类
partial关键字修饰class类,可以在同一个命名空间内使用相同名字的类,相当于把一个类拆成多个类来写。
using System; using System.Collections; using System.Collections.Generic; namespace Dome { class person { static void Main(string[] args) { renlei s = new renlei(); Console.WriteLine(s.age); Console.WriteLine(s.name); Console.ReadKey(); } } public sealed class dom { //sealed修饰是密封类,不能被继承 } public partial class renlei {//partial 关键字可以在同一个命名空间内使用多个相同名字的类,它们属于同一个类 public string name = "小明"; } public partial class renlei { public int age = 18; } }
时间就像海绵里的水,只要你愿意挤,总还是有的——鲁迅
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步