标签:main color ati 分享 div 分类 namespace console 不能被继承
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; } }
标签:main color ati 分享 div 分类 namespace console 不能被继承
原文地址:http://www.cnblogs.com/syzly/p/6659719.html