标签:子类 [] style lin 类的属性 class 属性 直接 类的方法
C#类的继承,一个冒号即可。子类:父类
namespace ConsoleApplication1 { class Parent //父类 { public int Height { get; set; } //身高 public string SkinColor { get; set; } //肤色 } class Sun:Parent //继承 { public void Show() { Console.WriteLine("儿子身高{0}cm,肤色{1}", Height, SkinColor);//直接使用父类的属性 } } class Program { static void Main(string[] args) { Sun s = new Sun(); //创建子类的对象 s.Height = 180; s.SkinColor = "黄色"; s.Show(); //子类的方法 } } }
标签:子类 [] style lin 类的属性 class 属性 直接 类的方法
原文地址:https://www.cnblogs.com/xixixing/p/10792697.html