博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据结构通用算法(深拷贝+比较)
阅读量:4873 次
发布时间:2019-06-11

本文共 5002 字,大约阅读时间需要 16 分钟。

 

1     public class CompareIgnoreAttribute : Attribute  2     {  3     };  4   5     [Serializable] // 深拷贝需要  6     public abstract class DataInfo  7     {  8         // 快速深拷贝  9         public static object copy(object th) 10         { 11             MemoryStream ms = new MemoryStream(); 12             BinaryFormatter bf = new BinaryFormatter(); 13             bf.Serialize(ms, th); 14             ms.Seek(0, 0); 15             object th2 = bf.Deserialize(ms); 16             ms.Close(); 17             return th2; 18         } 19  20         // 比较 21         public static bool Equ(object th1, object th2) 22         { 23             try 24             { 25                 if (th1 == null || th2 == null) 26                 { 27                     if (th1 == null && th2 == null) 28                     { 29                         return true; 30                     } 31                     else 32                     { 33                         return false; 34                     } 35                 } 36  37                 if (th1.GetType() != th2.GetType()) 38                 { 39                     return false; 40                 } 41  42                 if (th1 is IList) 43                 { 44                     IList l1 = th1 as IList; 45                     IList l2 = th2 as IList; 46                     if (l1.Count != l2.Count) 47                     { 48                         return false; 49                     } 50                     else 51                     { 52                         for (int i = 0; i < l1.Count; ++i) 53                         { 54                             if (!DataInfo.Equ(l1[i], l2[i])) 55                             { 56                                 return false; 57                             } 58                         } 59                     } 60                 } 61                 else if (th1.GetType().IsValueType || th1.GetType().IsEnum || th1.GetType() == typeof(string)) 62                 { 63                     if (th1.ToString() != th2.ToString()) 64                     { 65                         return false; 66                     } 67                 } 68                 else 69                 { 70                     PropertyDescriptorCollection pdcs = TypeDescriptor.GetProperties(th1); 71                     foreach (PropertyDescriptor pd in pdcs) 72                     { 73                         bool bIgnore = false; 74                         // 检查是否有“比较忽略”属性,有则跳过检查 75                         foreach (Attribute at in pd.Attributes) 76                         { 77                             if (at is CompareIgnoreAttribute) 78                             { 79                                 bIgnore = true; 80                                 break; 81                             } 82                         } 83  84                         if (!bIgnore) 85                         { 86                             object ob1 = pd.GetValue(th1); 87                             object ob2 = pd.GetValue(th2); 88                             if (!DataInfo.Equ(ob1, ob2)) 89                             { 90                                 return false; 91                             } 92                         } 93                     } 94                 } 95             } 96             catch (Exception) 97             { 98                 // 不应有异常 99             }100 101             return true;102         }103 104         //以下的方法仅给子类使用105         public virtual DataInfo copy()106         {107             return DataInfo.copy(this) as DataInfo;108         }109         public virtual bool Equ(DataInfo th)110         {111             return DataInfo.Equ(this, th);112         }113     };

 

使用示例

 

1     [Serializable] // 深拷贝需要 2     public class Car : DataInfo 3     { 4         public string m_name; 5         public string Name 6         { 7             get { return m_name; } 8             set { m_name = value; } 9         }10 11         //[CompareIgnore] 加在这边没用12         protected double m_price;13         [CompareIgnore]14         public double Price15         {16             get { return m_price; }17             set { m_price = value; }18         }19 20         public Car(string name, double price)21         {22             this.m_name = name;23             this.m_price = price;24         }25     }

 

 进行深拷贝

 

1     class Program2     {3         static void Main(string[] args)4         {5             Car a = new Car("a", 199999.99);6             Car b = a.copy() as Car;7             Console.WriteLine("Name " + b.Name.ToString() + ";Price " + b.Price.ToString());8         }9     }

输出结果为:Name a;Price 199999.99

 

 进行比较

1     class Program 2     { 3         static void Main(string[] args) 4         { 5             Car a = new Car("a", 99999.99); 6             Car b = new Car("a", 199999.99); 7             bool bSame = a.Equ(b); 8             Console.WriteLine(bSame.ToString()); 9         }10     }

输出结果为:True

 

 

 

 

转载于:https://www.cnblogs.com/spriteflk/p/3817040.html

你可能感兴趣的文章
原型(1)------------自我理解
查看>>
个人作业——软件产品案例分析
查看>>
JAVA_学习第二天(四)[ 逻辑运算符(&&)(||)(^)(~)]
查看>>
codeforces 55D 数位dp
查看>>
比特币:一种点对点的电子现金系统
查看>>
JAVA简单插入排序算法
查看>>
安全退出,清空Session或Cookie
查看>>
SGU[180] Inversions
查看>>
厄拉多塞筛(C语言)
查看>>
抽象数据类型的表示与实现
查看>>
【Python】循环语句
查看>>
SpringCloud微服务实战-Zuul路由网关
查看>>
C#优化
查看>>
Nutch1.2 的安装与使用
查看>>
一些基本公式和算法
查看>>
我和Django那些事儿(1)----与Django结缘
查看>>
DLP与上网行为管理的差别总结
查看>>
冬天防静电,绝对有效的办法
查看>>
树 List Leaves 【用数组模拟了树状结构建树+搜索叶子节点+按照特殊规律输出每个叶子节点】...
查看>>
Xcode 7.3 添加和配置pch文件?
查看>>