什么有两个Interface(Icomparable,Icomparer)进行比较?
而 IComparer 适用于这两种情况。
Possible Duplicate:
When to use IComparable<T> Vs. IComparer<T>
while IComparer works for both the cases.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
顾名思义,
IComparable
是可以比较的东西,IComparar
是一个可以比较其他对象的对象。如果您想比较两个相同类型的对象,那么您将在其上实现IComparable
。如果您想要一个可以比较其他对象的类型,那么您将实现IComparer
。As the name suggests
IComparable
is thing that can be compared andIComparar
is an object that can compare other objects. If you want to compare two objects of same type then you will implementIComparable
on it. If you want a type that can compare other objects then you will implementIComparer
.