using System; namespace ConsoleApplication1 { public class BaseA { public int x = 1; public void Invoke() { Console.WriteLine(x.ToString()); } public int TrueValue { get { return x; } set { x = value; } } } public class DerivedB : BaseA { new public int x = 2; new public void Invoke() { Console.WriteLine(x.ToString()); } new public int TrueValue { get { return x; } set { x = value; } } } class Test { static void Main(string[] args) { DerivedB b = new DerivedB(); b.Invoke();//調用DerivedB的Invoke方法,輸出:2 Console.WriteLine(b.x.ToString());//輸出DerivedB的成員x值:2 BaseA a = b; a.Invoke();//調用BaseA的Invoke方法,輸出:1 a.TrueValue = 3;//調用BaseA的屬性TrueValue,修改BaseA的成員x的值 Console.WriteLine(a.x.ToString());//輸出BaseA的成員x的值:3 Console.WriteLine(b.TrueValue.ToString());//輸出DerivedB的成員x的值,仍然是:1 //可見,要想訪問被隱藏的基類的成員變量、屬性或方法,辦法就是將子類造型爲父類,然 //後經過基類訪問被隱藏的成員變量、屬性或方法。 } } } new約束指定泛型類聲明中的任何類型參數都必須具備公共的無參數構造函數.請看下例: using System; using System.Collections.Generic; namespace ConsoleApplication2 { public class Employee { private string name; private int id; public Employee() { name = "Temp"; id = 0; } public Employee(string s, int i) { name = s; id = i; } public string Name { get { return name; } set { name = value; } } public int ID { get { return id; } set { id = value; } } } class ItemFactory<T> where T : new() { public T GetNewItem() { return new T(); } } public class Test { public static void Main() { ItemFactory<Employee> EmployeeFactory = new ItemFactory<Employee>(); ////此處編譯器會檢查Employee是否具備公有的無參構造函數。 //若沒有則會有The Employee must have a public parameterless constructor 錯誤。 Console.WriteLine("{0}'ID is {1}.", EmployeeFactory.GetNewItem().Name, EmployeeFactory.GetNewItem().ID); } } }
在用做修飾符時,new 關鍵字能夠顯式隱藏從基類繼承的成員。 隱藏繼承的成員時,該成員的派生版本將替換基類版本。 雖然能夠在不使用 new 修飾符的狀況下隱藏成員,但會生成警告。 若是使用 new 顯式隱藏成員,則會取消此警告,並記錄要替換爲派生版本這一事實。app
若要隱藏繼承的成員,請使用相同名稱在派生類中聲明該成員,並使用 new 修飾符修飾該成員。 例如:less
public class BaseC { public int x; public void Invoke() { } } public class DerivedC : BaseC { new public void Invoke() { } } 在此示例中,DerivedC.Invoke 隱藏了 BaseC.Invoke。 字段 x 不受影響,由於它沒有被相似名稱的字段隱藏。 經過繼承隱藏名稱採用下列形式之一: 引入類或結構中的常數、指定、屬性或類型隱藏具備相同名稱的全部基類成員。 引入類或結構中的方法隱藏基類中具備相同名稱的屬性、字段和類型。 同時也隱藏具備相同簽名的全部基類方法。 引入類或結構中的索引器將隱藏具備相同名稱的全部基類索引器。 對同一成員同時使用 new 和 override 是錯誤的作法,由於這兩個修飾符的含義互斥。 new 修飾符會用一樣的名稱建立一個新成員並使原始成員變爲隱藏的。 override 修飾符會擴展繼承成員的實現。 在不隱藏繼承成員的聲明中使用 new 修飾符將會生成警告。 示例 在該例中,基類 BaseC 和派生類 DerivedC 使用相同的字段名 x,從而隱藏了繼承字段的值。 該示例演示了 new 修飾符的用法。 另外還演示瞭如何使用徹底限定名訪問基類的隱藏成員。 public class BaseC {
在此示例中,嵌套類隱藏了基類中同名的類。 此示例演示瞭如何使用 new 修飾符來消除警告消息,以及如何使用徹底限定名來訪問隱藏的類成員。 public class BaseC { public class NestedC { public int x = 200; public int y; } } public class DerivedC : BaseC { // Nested type hiding the base type members. new public class NestedC { public int x = 100; public int y; public int z; } static void Main() { // Creating an object from the overlapping class: NestedC c1 = new NestedC(); // Creating an object from the hidden class: BaseC.NestedC c2 = new BaseC.NestedC(); Console.WriteLine(c1.x); Console.WriteLine(c2.x); } } /* Output: 100 200 */ 若是移除 new 修飾符,該程序仍可編譯和運行,但您會收到如下警告: The keyword new is required on 'MyDerivedC.x' because it hides inherited member 'MyBaseC.x'.
public static int x = 55; public static int y = 22; } public class DerivedC : BaseC { // Hide field 'x'. new public static int x = 100; static void Main() { // Display the new value of x: Console.WriteLine(x); // Display the hidden value of x: Console.WriteLine(BaseC.x); // Display the unhidden member y: Console.WriteLine(y); } } /* Output: 100 55 22 */