我有一个管理对象集合的类,例如List<Car>
和List<Bike>
属于属性。
我想在查找中找到一种方法来获取每个集合的引用,这样我就可以实现Add<Car>(myCar)
或Add(myCar)
(带反射)等方法将它添加到正确的集合中。
我尝试了以下内容,
public class ListManager
{
private Dictionary<Type, Func<IEnumerable<object>>> _lookup
= new Dictionary<Type, Func<IEnumerable<object>>>();
public ListManager()
{
this._lookup.Add(typeof(Car), () => { return this.Cars.Cast<object>().ToList(); });
this._lookup.Add(typeof(Bike), () => { return this.Bikes.Cast<object>().ToList(); });
}
public List<Car> Cars { get; set; }
public List<Bike> Bikes { get; set; }
}
但是.ToList()
会创建一个新列表而不是引用,因此_lookup[typeof(Car)]().Add(myCar)
只会添加到词典列表中。
答案 0 :(得分:5)
这将有效:
public class ListManager
{
private Dictionary<Type, IList> _lookup
= new Dictionary<Type, IList>();
public ListManager()
{
_lookup.Add(typeof(Car), new List<Car>());
_lookup.Add(typeof(Bike), new List<Bike>());
}
public List<Car> Cars
{
get { return (List<Car>)_lookup[typeof(Car)]; }
}
public List<Bike> Bikes
{
get { return (List<Bike>)_lookup[typeof(Bike)]; }
}
public void Add<T>(T obj)
{
if(!_lookup.ContainsKey(typeof(T))) throw new ArgumentException("obj");
var list = _lookup[typeof(T)];
list.Add(obj);
}
}
如果Car
和Bike
都来自同一个类或实现相同的接口,那将是很好的。然后,您可以向Add
方法添加类型约束以获取编译错误,而不是ArgumentException
。
修改强>
上述简单解决方案存在一个小问题。只有添加到列表中的对象类型与_lookup
字典中存储的类型完全相同时,它才有效。如果您尝试添加从Car
或Bike
派生的对象,则会抛出。
例如,如果您定义一个类
public class Batmobile : Car { }
然后
var listManager = new ListManager();
listManager.Add(new Batmobile());
将抛出ArgumentException
。
为避免这种情况,您需要一种更复杂的类型查找方法。它应该是:{/ p>而不是简单的_lookup[typeof(Car)]
private IList FindList(Type type)
{
// find all lists of type, any of its base types or implemented interfaces
var candidates = _lookup.Where(kvp => kvp.Key.IsAssignableFrom(type)).ToList();
if (candidates.Count == 1) return candidates[0].Value;
// return the list of the lowest type in the hierarchy
foreach (var candidate in candidates)
{
if (candidates.Count(kvp => candidate.Key.IsAssignableFrom(kvp.Key)) == 1)
return candidate.Value;
}
return null;
}
答案 1 :(得分:3)
尝试以下方法:
public class ListManager
{
private readonly Dictionary<Type, IList> _lookup = new Dictionary<Type, IList>();
public ListManager()
{
_lookup.Add(typeof(Car), new List<Car>());
_lookup.Add(typeof(Bike), new List<Bike>());
}
public List<T> Get<T>()
{
return _lookup[typeof(T)] as List<T>;
}
public void Add<T>(T item)
{
Get<T>().Add(item);
}
public List<Car> Cars
{
get { return Get<Car>(); }
}
public List<Bike> Bikes
{
get { return Get<Bike>(); }
}
}
用法:
var listManager = new ListManager();
listManager.Add(new Car());
如果你有一些来自Car
的类,例如:
public class Ferrari : Car { }
由于某些原因,您不希望在字典中添加List<Ferrari>
,但您想将Ferrari
添加到List<Car>
。然后,您应该明确指定泛型类型参数:
listManager.Add<Car>(new Ferrari());
编译器在编译时检查Ferrari
是Car
是非常重要的,因此您无法将Ferrari
添加到List<Bike>
。< / em>的
但在这种情况下,您可能会忘记在某处指定泛型类型参数,因此您将在运行时获得异常。
要避免它,只需删除Add<T>
方法即可。因此,您每次都必须明确指定集合的类型:
listManager.Get<Car>().Add(new Ferrari());
但所有类型检查都将在编译时执行。
此外,使用最后一种方法,您可以随意操作列表,因为Get<T>
方法返回对功能齐全的List<T>
的引用(不仅仅是纯非泛型{{1} }}):
IList
因此,您不需要通过重新实现List<Car> cars = listManager.Get<Car>();
cars.Add(new Ferrari());
var coolCars = cars.OfType<Ferrari>();
中的List<T>
方法来重新发明轮子。
答案 2 :(得分:2)
您可以枚举所有 ListManager 属性并按其类型进行过滤。这是一个有效的例子:
public class Car
{
public int Wheels { get; set; }
}
public class Bike
{
public int Pedals { get; set; }
}
public class ListManager
{
//Defina all list properties here:
public List<Car> Car { get; } = new List<Car>();
public List<Bike> Bikes { get; } = new List<Bike>();
//Gets a list instance by its element type
public object GetList(Type ElemType)
{
//Get the first property that is of the generic type List<> and that it's first generic argument equals ElemType,
//then, obtain the value for that property
return GetType().GetProperties()
.Where(x =>
x.PropertyType.IsGenericType &&
x.PropertyType.GetGenericTypeDefinition() == typeof(List<>) &&
x.PropertyType.GetGenericArguments()[0] == ElemType).FirstOrDefault().GetValue(this);
}
public void Add(object Value)
{
var ElemType = Value.GetType();
var List = GetList(ElemType);
//If list had more Add method overloads you should get all of them and filter by some other criteria
var AddMethod = List.GetType().GetMethod("Add");
//Invoke the Add method for the List instance with the first parameter as Value
AddMethod.Invoke(List,new [] { Value });
}
}
测试控制台程序:
class Program
{
static void Main(string[] args)
{
var L = new ListManager();
L.Add(new Car { Wheels = 4 });
L.Add(new Car { Wheels = 3 });
L.Add(new Bike { Pedals = 2 });
//Prints 2:
Console.WriteLine(L.Car.Count);
//Prints 1:
Console.WriteLine(L.Bikes.Count);
Console.ReadKey();
}
}
**注意:**可以使用Dictionary缓存GetList方法以提高其性能,因为它将返回相同类型的相同实例