在List <t>派生的Collection </t> </t>中实现IEnumerable <t>

时间:2011-10-04 06:00:30

标签: c#

我收到了一个错误。这是复制到Console项目并剥离的代码:

namespace ConsoleApplication1
{
public interface IHexGrid
{ 
    IEnumerable<Hex> hexs { get; } //error related location
}

public class HexC : Hex
{ public int var1;}

public abstract class Hex
{ public int var2; }    

public class HexGridC : IHexGrid //error CS0738
{        
    public List<HexC> hexs { get; set; } // error related location
}    

class Program
{        
    static void Main(string[] args)
    {
    }
}
}

我收到以下内容:错误CS0738:

'ConsoleApplication1.HexGridC' does not implement interface
member 'ConsoleApplication1.IHexGrid.hexs'. 'ConsoleApplication1.HexGridC.hexs' cannot 
implement 'ConsoleApplication1.IHexGrid.hexs' because it does not have the matching 
return type of '`System.Collections.Generic.IEnumerable<ConsoleApplication1.Hex>`'.

不确定为什么IENumerable是Covariant。任何帮助非常感谢。

编辑:代码已经简化

1 个答案:

答案 0 :(得分:4)

问题是您的属性类型错误。 C#不支持在接口中指定的属性或方法的协变返回类型,也不支持虚方法重写。您可以使用显式接口实现:

public class HexGridC : IHexGrid //error CS0738: etc
{        
    public GridElList<HexC> hexs { get; set; } // error related location

    IEnumerable<Hex> IHexGrid.hexs { get { return hexs; } }
}

顺便说一下,这一切看起来都非常复杂 - 而且一般来说, 通常 List<T>派生出来是个好主意。 (支持组合,或者从设计继承的Collection<T>派生。)它真的需要这么复杂吗?如果确实如此,为了这个问题,仍然值得减少示例的复杂性。