为什么我不能使用 HashSet 来实现 IEnumerable 接口属性
本文关键字:string 实现 IEnumerable 接口 属性 HashSet 为什么 不能 | 更新日期: 2023-09-27 18:35:39
>我想知道为什么我不能使用 HashSet<string>
来实现IEnumerable<string>
接口属性?
下面的代码给了我一个编译错误,并出现以下错误;
"查找"不实现接口成员"ILookups.LastNames"。 "查找.姓氏"无法实现"ILookups.LastNames",因为它 没有匹配的返回类型 'System.Collections.Generic.IEnumerable'.
public interface ILookups
{
IEnumerable<string> FirstNames { get; set; }
IEnumerable<string> LastNames { get; set; }
IEnumerable<string> Companies { get; set; }
}
public class Lookups : ILookups
{
public HashSet<string> FirstNames { get; set; }
public HashSet<string> LastNames { get; set; }
public HashSet<string> Companies { get; set; }
}
根据Resharper的说法,这是HashSet
的构造函数签名;
// Type: System.Collections.Generic.HashSet`1
// Assembly: System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
// Assembly location: C:'Windows'Microsoft.NET'Framework'v4.0.30319'System.Core.dll
...
/// <summary>
/// Represents a set of values.
/// </summary>
/// <typeparam name="T">The type of elements in the hash set.</typeparam>
[DebuggerDisplay("Count = {Count}")]
[DebuggerTypeProxy(typeof (HashSetDebugView<>))]
[__DynamicallyInvokable]
[Serializable]
[HostProtection(SecurityAction.LinkDemand, MayLeakOnAbort = true)]
public class HashSet<T> : ISerializable,
IDeserializationCallback, ISet<T>,
ICollection<T>, IEnumerable<T>, IEnumerable
{
。而且看起来它肯定实现了IEnumerable<T>
呵呵!这并不重要,只是很烦人,因为解决方法只是冗长,感觉像是语言的损坏功能,而且非常糟糕。爪哇式的?(呵呵!(一旦完成,我将稍后在此处发布工作,以防我错过了一个技巧)。如果有人有答案或更好的方法来做到这一点,或者为什么会这样,那将不胜感激?
TXS,
艾伦
更新:1.1.15 大多数评论写完后1天,所以请少许盐。
re: re:"即使 B 继承/实现 A,您也不能实现声明为返回 A 的属性与返回 B 的另一个属性。 我不相信这是完全正确的,因为以下代码编译得很好;咚!
void Main()
{
var r = new PersonRepo();
Console.WriteLine(r.GetPerson(2).Name);
}
public class PersonRepo : IPersonRepo
{
public Person GetPerson(int id)
{
var m = new Manager()
{
Department = "department" + id.ToString(),
Name = "Name " + id.ToString()
};
return m;
}
}
public interface IPersonRepo
{
Person GetPerson(int id);
}
public class Person
{
public string Name { get; set;}
}
public class Manager : Person
{
public string Department { get; set; }
}
我刚刚看到了我的错误,如果你Person GetPerson(int id)
更改为Manager GetPerson(int id)
上面的代码将无法编译,你会得到一个编译错误,这实际上是有道理的!好的,我认为这已经完成了并尘埃落定!;-D
若要实现接口成员签名,必须与接口中声明的完全相同。您不能实现声明为返回A
的属性与另一个返回B
的属性,即使B
继承/实现A
。
您可以显式实现该成员并将其路由到您的媒体资源:
public class Lookups : ILookups
{
public HashSet<string> FirstNames { get; set; }
IEnumerable<string> ILookups.FirstNames { get { return this.FirstNames; } }
}
为什么需要这样做?请考虑以下代码:
var lookups = (ILookups)new Lookups();
// assigning List<string> to ILookups.FirstNames, which is IEnumerable<string>
lookups.FirstNames = new List<string>();
您希望如何解决这个问题?这是完全有效的代码,但是在您的Lookups
实现中,您刚刚将List<string>
分配给HashSet<string>
!对于方法和/或仅 getter 属性无关紧要,但也许只是为了一致性?