您好,登錄后才能下訂單哦!
在研發(fā)之余,把寫(xiě)代碼過(guò)程中比較常用的代碼備份一下,下面的代碼內(nèi)容是關(guān)于C# 中使用 override 和 new 關(guān)鍵字進(jìn)行版本控制的代碼,應(yīng)該是對(duì)大家有些用。
public class MyBase
{
public virtual string Meth2()
{
return "MyBase-Meth2";
}
public virtual string Meth3()
{
return "MyBase-Meth3";
}
public virtual string Meth4()
{
return "MyBase-Meth4";
}
}
class MyDerived : MyBase
{
public override string Meth2()
{
return "MyDerived-Meth2";
}
public new string Meth3()
{
return "MyDerived-Meth3";
}
public string Meth4()
{
return "MyDerived-Meth4";
}
public static void Main()
{
MyDerived mD = new MyDerived();
MyBase mB = (MyBase) mD;
System.Console.WriteLine(mB.Meth2());
System.Console.WriteLine(mB.Meth3());
System.Console.WriteLine(mB.Meth4());
}
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。