溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

C# 中使用 override 和 new 關(guān)鍵字進(jìn)行版本控制的代碼

發(fā)布時(shí)間:2020-07-20 17:21:02 來(lái)源:網(wǎng)絡(luò) 閱讀:314 作者:嚇了一跳哦 欄目:移動(dòng)開(kāi)發(fā)

在研發(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());

}
}

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI