gpt4 book ai didi

c# - 为什么我会收到关于隐藏基类方法的属性的警告 CS0108

转载 作者:太空宇宙 更新时间:2023-11-03 14:57:26 25 4
gpt4 key购买 nike

<分区>

给定以下类,C# 编译器会给我这个警告:-

CS0108“‘B.Example’隐藏了继承的成员‘A.Example(string)’。如果有意隐藏,请使用 new 关键字”。

class A
{
public string Example(string something)
{
return something;
}
}

class B : A
{
public string Example => "B";
}

如果使用运行这段代码的类

class Program
{
static void Main(string[] args)
{
B b = new B();
Console.WriteLine(b.Example("A"));
Console.WriteLine(b.Example);
}
}

我得到以下输出

A
B

这是我所期望的。

在我看来,根本没有隐藏任何东西。的确如果 B 类实际上包含像这样的简单方法重载,那么我不会收到等效的警告。

class B : A
{
public string Example(int another) => "B";
}

属性是否有特殊之处使编译器警告有效,或者这是编译器中的误报?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com