具有相互引用的泛型类型的 C# 接口



目前我正在使用很多类和这些类的列表。以前我静态方法,它会接受一个特定的类列表并返回列表的子集或单个项目。

但是,我认为让继承 List 的类并在那里拥有必要的方法并且不再使它们成为静态的类会更方便,因此它们适用于您正在使用的任何对象列表。

我一直无法找到一种简单的方法来将 List 转换为继承此内容的类,因此我在所有这些集合类中创建了一个方法来为我转换它。

例:

public class Student 
{
public int Id {get;set;}
public string Name {get;set;}
}
public class Students : List<Student>
{
public Student GetTopStudent()
{
return this.OrderByDescending(s => s.Grade).FirstOrDefault();
}
public Students GetPassingStudents()
{
return this.Where(s => s.Grade > 0.7).ToCollection();
}
public Students ToCollection(IEnumerable<Student> studentsList)
{
var students = new Students();
foreach(var s in studentsList)
{
students.Add(s);
}
return students();
]
}

我还有很多其他类和这样的类列表,但这是一个非常简单的例子。我发现我的一些方法,如"ToCollection(("方法,在类之间几乎相同,除了返回类型和列表中包含的类型。

所以我尝试创建扩展和接口自动处理这些方法。

集合类和接口

public abstract class Collection<T> : List<T>
{
// Needed tie in the extension method with the List.Add() Method
public void Add(object item) => base.Add((T)item);
}
public interface IObjectWithId<T> 
where T : IObjectWithId<T>
{
int Id {get;set;}
}
public ICollectionItem<C> 
where C : Collection<IcollectionItem<C>>
{
}
public ICollectionItemWithId<C,T> 
where C : Collection<ICollectionItemWithId<C,T>>
where T : IObjectWithId<T>
{
}

扩展

public static List<T> Get<T>(this IEnumerable<IobjectWithId<T>> list, List<int> ids)
where T : IObjectWithId<T>
{
return list.Where(i => ids.Contains(i.Id))
.Cast<T>();
.ToList();
}
public static C Get<C, T>(this IEnumerable<IcollectionItemWithId<C, T>> list, List<int> ids)
where C : Collection<ICollectionItemWithId<C, T>>, new()
where T : IObjectWithId<T>
{
return list.Where(i => ids.Contains(i.Id)).ToCollection();
}
public static C ToCollection<C, T>(this IEnumerable<ICollectionItemWithId<C, T>> list)
where C : Collection<ICollectionItemWithId<C, T>>, new()
where T : IObjectWithId<T>
{
var collection = new C();
foreach(var item in list)
{
collection.Add(item);
}
return collection;
}
public static C ToCollection<C>(this IEnumerable<ICollectionItem<C>> list)
where C : Collection<ICollectionItem<C>>, new()
{
var collection = new C();
foreach(var item in list)
{
collection.Add(item);
}
return collection;
}

我一直无法让这段代码工作。通常我在构建它后会收到错误,要么没有从学生类到学生列表的隐式引用转换,要么与拳击有关的错误。

我担心我的接口相互引用可能会产生很多问题,但是我这样做的原因是我不必指定方法的返回类型,尽管也许这是此时最简单的事情...

你把事情复杂化了。根本问题是你好奇的自我引用public interface IObjectWithId<T>。由于您不在接口本身的任何地方使用 T,因此不需要是通用的。

只需编写适用于IEnumerable<T>的扩展方法,并返回对 T 的一些简单约束IEnumerable<T>,例如

// This does not need to be generic in any way
public interface IObjectWithId
{
int Id {get;set;}
}
public static IEnumerable<T> Get<T>(this IEnumerable<T> list, List<int> ids)
where T : IObjectWithId
{
return list.Where(i => ids.Contains(i.Id));
}

如果调用方愿意,让他们.ToList()链。有时他们可能只想要一个(Single()First()(,或者他们可能会在它之后执行另一个过滤器或组操作,因此强制它回到List<T>是低效的。

相关内容

  • 没有找到相关文章

最新更新