4

我对接口的实现感到困惑。

根据MSDN ICollection<T>有财产IsReadOnly

-和-

根据MSDN Collection<T>实现ICollection<T>

-所以-

我以为Collection<T>会有财产IsReadOnly

-然而-

Collection<string> testCollection = new Collection<string>();
Console.WriteLine(testCollection.IsReadOnly);

上面的代码给出了编译器错误:

'System.Collections.ObjectModel.Collection<string>' does not contain a definition for 'IsReadOnly' and no extension method 'IsReadOnly' accepting a first argument of type

'System.Collections.ObjectModel.Collection<string>' could be found (are you missing a using directive or an assembly reference?)

-尽管-

Collection<string> testInterface = new Collection<string>();
Console.WriteLine(((ICollection<string>)testInterface).IsReadOnly);

上面的代码有效。

-问题-

我认为实现接口的类必须实现每个属性,那么为什么没有testCollectionIsReadOnly属性,除非您将其转换为ICollection<string>

4

2 回答 2

10

它可能正在显式地实现该属性。

C# 使您能够将方法定义为“显式实现的接口方法/属性”,只有在您具有确切接口的引用时才可见。这使您能够提供“更清洁”的 API,而不会产生太多噪音。

于 2013-08-02T15:02:08.793 回答
3

接口可以通过几种方式实现。显式和隐式。

显式实现:显式实现成员时,不能通过类实例访问,只能通过接口的实例访问

隐式实现:可以访问接口方法和属性,就好像它们是类的一部分一样。

IsReadonly属性是显式实现的,因此不能直接通过类访问。看看这里

例子:

public interface ITest
{
    void SomeMethod();
    void SomeMethod2();
}

public ITest : ITest
{

    void ITest.SomeMethod() {} //explicit implentation
    public void SomeMethod2(){} //implicity implementation
}
于 2013-08-02T15:19:16.147 回答