这个自定义比较功能有什么问题
我试图调试一个问题并遇到了这个问题。也许有人可以向我解释一下。这是有问题的代码
public int Compare(CustomClass rt1, CustomClass rt2)
{
if (rt1 == null & rt2 == null)
return 0;
if (rt1 == null)
return -1;
if (rt2 == null)
return 1;
if (rt1.yPos < rt2.yPos)
return -1;
if (rt1.yPos == rt2.yPos)
{
if (rt1.xPos < rt2.xPos)
return -1;
if (rt1.xPos == rt2.xPos)
return 0;
}
return 1;
}
我得到的错误是:当 Array.Sort 调用 x 时,IComparer(或其依赖的 IComparable 方法)没有返回零。比较 (x)。
更有趣的是,如果我在调试模式下从 VS 运行它,就不会出现错误。仅当我将其置于发布模式并点击“启动而不调试”时。有人知道为什么会发生这种情况吗?我通过添加“if(rt1 == rt2) return 0;”解决了该问题行到函数的开头,但真的很想知道发生了什么。
额外信息: 是的,这实现了 IComparer 类
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你缺少一个&amp;)(这是一个错字吗?)
your missing an amperstand (&) (is this a typo?)
有时排序算法最终会将对象与其自身进行比较。当这种情况发生时,它触发了代码:
正是这个导致了错误。您必须确保涵盖所有案例。
如果这些 x,y 值代表点,您可能需要查看有关对它们进行排序的文章: http://www.c-sharpcorner.com/UploadFile/mgold/SortedDictionarySample06202007142815PM/SortedDictionarySample.aspx
Sometimes a sort algorithm will end up comparing an object to itself. When this happened, it triggered the code:
It was this that caused the error. You've got to be sure that you have all cases covered.
And if those x,y values represent points, you might want to check this article on sorting them: http://www.c-sharpcorner.com/UploadFile/mgold/SortedDictionarySample06202007142815PM/SortedDictionarySample.aspx