假设实现 IComparable时 != null
我有一个 T
类型的对象,它实现了 IComparable
。在实现 bool Equals (T obj) 时可以省略检查 if (ReferenceEquals(this, null)) { DoSomething() } 吗?我可以假设由于可以调用该函数 this
已经不为空吗?
非常感谢。
I have an object of type T
which implements IComparable<T>
. Is it okay when implementing bool Equals (T obj)
to ommit the check if (ReferenceEquals(this, null)) { DoSomething() }
? Can I assume that since the function could be called this
is already not null?
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以假设如果已在对象上调用该函数,则该对象不为
null
。Yes you can assume that if the function has been called on an object, then that object is not
null
.您应该始终假设
this != null
,因为 C# 保证了这一点。You should always assume
this != null
, because C# guarantees it.