摘要: ==比较的是栈内的内容,就是值类型的比较或者对引用的比较。值类型用“==”比较,就是比较的值,引用类型比较则是比较这两个引用类型的存在栈内的地址是否相同。Equals()分为虚拟方法和静态方法两种,如果比较的是引用,同ReferenceEquals(),但是Equals()的虚拟方法常常被override,以比较引用类型实际的值,这是它最重要的用途,比如.Net的strin... 阅读全文
posted @ 2009-11-20 20:58 亦心 阅读(775) 评论(0) 推荐(2) 编辑
摘要: private static void Demo() { List<int[]> list = new List<int[]>(); list.Add(new int[] { 3, 4 }); list.Add(new int[] { 3, 5 }); list.Add(new int[] { 3, 8 }); list.Add(new int[] { 6, 4 }); l... 阅读全文
posted @ 2009-11-20 15:24 亦心 阅读(348) 评论(0) 推荐(0) 编辑