c# – 空参数的可扩展行为

前端之家收集整理的这篇文章主要介绍了c# – 空参数的可扩展行为前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在实施IComparable和IComprable< T>在我的一个课程有没有关于在给定一个空参数时每种情况下CompareTo方法应该如何表现的建议?应该返回一个正数还是抛出一个ArgumentNullException?或者这个行为会因执行类而有所不同吗?

我看到了MSDN文档(herehere),但对此没有任何意见.任何帮助将不胜感激.

解决方法

IComparable.CompareTo()IComparable<T>.CompareTo()的两个MSDN引用如下:

By definition,any object compares greater than (or follows) Nothing,and two null references compare equal to each other.

没有任何VB对应于C#中的null.

注意前一段说:

The meaning of the comparisons,“less than,” “equal to,” and “greater than,” depends on the particular implementation.

但是,不是null的实例引用始终大于null引用,无论你如何比较类的实例.

原文链接:https://www.f2er.com/csharp/93130.html

猜你在找的C#相关文章