扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:愚翁 来源:天极Yesky软件频道 2007年11月11日
关键字: 《Effective C#》 区别 判等函数
public static bool ReferenceEquals( object left, object right ); |
int n = 10; Object.ReferenceEquals( n, n ); |
public static bool Equals( object left, object right ); |
public static void Equals( object left, object right ) { // Check object identity if( left == right ) return true; // both null references handled above if( ( left == null ) || ( right == null ) ) return false; return left.Equals( right ); } |
int n = 10; Debug.WriteLine( string.Format( "{0}", Object.Equals( n, n ) ) ); Debug.WriteLine( string.Format( "{0}", Object.Equals( n, 10 ) ) ); |
public override bool Equals( object right ); |
public class KeyData { private int nData; public int Data { get{ return nData;} set{ nData = value; } } public override bool Equals( object right ) { //Check null if( right == null ) return false; //check reference equality if( object.ReferenceEquals( this, right ) ) return true; //check type if( this.GetType() != right.GetType() ) return false; //convert to current type KeyData rightASKeyData = right as KeyData; //check members value return this.Data == rightASKeyData.Data; } } |
if( this.GetType() != right.GetType() ) |
public static bool operator == ( KeyData left, KeyData right ); |
public struct KeyData { private int nData; public int Data { get{ return nData;} set{ nData = value; } } public static bool operator == ( KeyData left, KeyData right ) { return left.Data == right.Data; } public static bool operator != ( KeyData left, KeyData right ) { return left.Data != right.Data; } } |
操作结果取决于 | 适用范围 | 建议 | |
Object.ReferenceEquals | 两个参数对象是否属于同一个引用 | 引用类型 | 不要用它来判断值类型数据 |
Object.Equals | 参数类型自身的判等函数 | 无限制 | 考虑装箱操作对值类型数据产生的影响 |
类型的Equals | 类型重载函数 | 无限制 | 考虑装箱操作对值类型数据产生的影响 |
类型的==重载 | 类型重载函数 | 无限制 | 不要在引用类型中重载此运算符 |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者