c中base的用法
c中base的用法
c中base的用法的用法你知道吗?下面小编就跟你们详细介绍下c中base的用法的用法,希望对你们有用。
学习啦在线学习网 c中base的用法的用法如下:
学习啦在线学习网 1、调用基类中的重名方法
[csharp]
public class Person
{
protected string ssn = "444-55-6666";
protected string name = "John L. Malgraine";
public virtual void GetInfo()
{
学习啦在线学习网 Console.WriteLine("Name: {0}", name);
Console.WriteLine("SSN: {0}", ssn);
}
}
学习啦在线学习网 class Employee : Person
{
public string id = "ABC567EFG";
public override void GetInfo()
{
学习啦在线学习网 // Calling the base class GetInfo method:
base.GetInfo();
学习啦在线学习网 Console.WriteLine("Employee ID: {0}", id);
}
}
学习啦在线学习网 class TestClass
{
static void Main()
{
Employee E = new Employee();
E.GetInfo();
}
}
/*
Output
Name: John L. Malgraine
学习啦在线学习网 SSN: 444-55-6666
Employee ID: ABC567EFG
*/
2、调用基类的构造方法
[csharp]
学习啦在线学习网 ublic class ActionCancelEventArgs : System.ComponentModel.CancelEventArgs
{
学习啦在线学习网 public ActionCancelEventArgs() : this(false) {}
public ActionCancelEventArgs(bool cancel) : this(false, String.Empty) {}
public ActionCancelEventArgs(bool cancel, string message) : base(cancel)
{
this.message = message;
}
学习啦在线学习网 public string Message{ get; set;}
}