我想在Dictionary中使用一个类作为键,它不会覆盖Equals和GetHashCode。这是一个来自外部库的类,我不想修改它。
所以我想知道我是否可以为一个字典使用自定义“GetHashCode”/“Equals”实现?我想知道是否有可能像C ++ std :: maps这样的东西
template < class Key, // map::key_type
class T, // map::mapped_type
class Compare = less<T>, // map::key_compare
class Alloc = allocator<T> > // map::allocator_type
> class map;
其中Compare可用于定义自定义比较。
我不想从类派生,因为对象是使用现有类在外部创建的。
我可以创建一个包含原始类的类,但这会改变对Dictionary的访问。
感谢您的想法!
答案 0 :(得分:5)
当然 - 您可以实施IEqualityComparer<T>
并将其传递到the Dictionary<,>
constructor。这正是构造函数的目的:)
例如:
public FooByNameEqualityComparer : IEqualityComparer<Foo>
{
public int GetHashCode(Foo foo)
{
return foo.Name.GetHashCode();
}
public bool Equals(Foo x, Foo y)
{
return x.Name == y.Name;
}
}
...
Dictionary<Foo, int> map = new Dictionary<Foo, int>(new FooByNameComparer());
答案 1 :(得分:2)
您可以将自定义IEqualityComparer<TKey>
传递给Dictionary<TKey,TValue>
的构造函数。相等比较器必须实现Equal
和GetHashCode
。
var dict = new Dictionary<MyKey,MyValue>(new MyKeyEqualityComparer());
答案 2 :(得分:1)
您可以使用Dictionary Constructor (Int32, IEqualityComparer),
public Dictionary(
int capacity,
IEqualityComparer<TKey> comparer
)
其中
comparer
是:
比较键 时要使用的实施方法
实践中
似乎你想要什么。