C#中New关键字的三种用法

本文介绍了C#中new关键字的三种用法,主要用于隐藏继承的成员。当在派生类中声明与基类同名的成员时,new修饰符用于创建新的成员并隐藏基类的相应成员。同时,文章强调了new与override的区别,new会创建新成员,而override则是扩展继承成员的实现。示例展示了如何使用new修饰符以及如何通过完全限定名访问隐藏的基类成员。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

三种用法如下:
在 C# 中,new 关键字可用作运算符、修饰符或约束。
1)new 运算符:用于创建对象和调用构造函数。这种大家都比较熟悉,没什么好说的了。
2)new 修饰符:在用作修饰符时,new 关键字可以显式隐藏从基类继承的成员。
3)new 约束:用于在泛型声明中约束可能用作类型参数的参数的类型。 
 
关于第二种用法看下例:
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);
        }
    }
}
见MSDN上关于New的解释

new 修饰符(C# 参考)

  在用作修饰符时,new 关键字可以显式隐藏从基类继承的成员。 隐藏继承的成员时,该成员的派生版本将替换基类版本。 虽然可以在不使用new 修饰符的情况下隐藏成员,但会生成警告。 如果使用 new 显式隐藏成员,则会取消此警告,并记录要替换为派生版本这一事实。

若要隐藏继承的成员,请使用相同名称在派生类中声明该成员,并使用new 修饰符修饰该成员。例如:

public class BaseC
{
    public int x;
    public void Invoke() { }
}
public class DerivedC : BaseC
{
    new public void Invoke() { }
}
在此示例中,DerivedC.Invoke 隐藏了BaseC.Invoke 字段x 不受影响,因为它没有被类似名称的字段隐藏。

通过继承隐藏名称采用下列形式之一:

  • 引入类或结构中的常数、指定、属性或类型隐藏具有相同名称的所有基类成员。

  • 引入类或结构中的方法隐藏基类中具有相同名称的属性、字段和类型。同时也隐藏具有相同签名的所有基类方法。

  • 引入类或结构中的索引器将隐藏具有相同名称的所有基类索引器。

对同一成员同时使用 newoverride 是错误的做法,因为这两个修饰符的含义互斥。new 修饰符会用同样的名称创建一个新成员并使原始成员变为隐藏的。override 修饰符会扩展继承成员的实现。

在不隐藏继承成员的声明中使用new 修饰符将会生成警告。

示例

在该例中,基类 BaseC 和派生类 DerivedC 使用相同的字段名 x,从而隐藏了继承字段的值。 该示例演示了 new 修饰符的用法。 另外还演示了如何使用完全限定名访问基类的隐藏成员。

public class BaseC
{
    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
*/
在此示例中,嵌套类隐藏了基类中同名的类。 此示例演示了如何使用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'.




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值