溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

克隆對象的方法有哪些

發(fā)布時(shí)間:2020-07-14 09:39:12 來源:億速云 閱讀:177 作者:Leah 欄目:編程語言

本篇文章為大家展示了克隆對象的方法有哪些,代碼簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

  實(shí)現(xiàn)深克隆有以下幾種方法。

手動

代碼如下:

//手動復(fù)制
var user2 = new User
{
	Id = user1.Id,
	Name = new UserName 
	{
		FirstName= user1.Name.FirstName,
		LastName= user1.Name.LastName
	}
};

反射

代碼如下:

1 //反射2 var user3 = user1.Copy() as User;

擴(kuò)展方法:

克隆對象的方法有哪些克隆對象的方法有哪些
 1 public static class DeepCopyHelper 2 { 3     public static object Copy(this object obj) 4     { 5         Object targetDeepCopyObj; 6         Type targetType = obj.GetType(); 7         //值類型 8         if (targetType.IsValueType == true) 9         {10             targetDeepCopyObj = obj;11         }12         //引用類型 13         else14         {15             targetDeepCopyObj = System.Activator.CreateInstance(targetType);   //創(chuàng)建引用對象 16             System.Reflection.MemberInfo[] memberCollection = obj.GetType().GetMembers();17 18             foreach (System.Reflection.MemberInfo member in memberCollection)19             {20                 if (member.MemberType == System.Reflection.MemberTypes.Field)21                 {22                     System.Reflection.FieldInfo field = (System.Reflection.FieldInfo)member;23                     Object fieldValue = field.GetValue(obj);24                     if (fieldValue is ICloneable)25                     {26                         field.SetValue(targetDeepCopyObj, (fieldValue as ICloneable).Clone());27                     }28                     else29                     {30                         field.SetValue(targetDeepCopyObj, Copy(fieldValue));31                     }32 33                 }34                 else if (member.MemberType == System.Reflection.MemberTypes.Property)35                 {36                     System.Reflection.PropertyInfo myProperty = (System.Reflection.PropertyInfo)member;37                     MethodInfo info = myProperty.GetSetMethod(false);38                     if (info != null)39                     {40                         object propertyValue = myProperty.GetValue(obj, null);41                         if (propertyValue is ICloneable)42                         {43                             myProperty.SetValue(targetDeepCopyObj, (propertyValue as ICloneable).Clone(), null);44                         }45                         else46                         {47                             myProperty.SetValue(targetDeepCopyObj, Copy(propertyValue), null);48                         }49                     }50 51                 }52             }53         }54         return targetDeepCopyObj;55     }56 }
View Code

序列化

代碼如下:

1 //序列化2 var user4 = user1.DeepClone();

擴(kuò)展方法:

克隆對象的方法有哪些克隆對象的方法有哪些
 1 /// <summary> 2 /// 深克隆 3 /// 先序列化再反序列化 4 /// </summary> 5 /// <typeparam name="T"></typeparam> 6 /// <param name="obj"></param> 7 /// <returns></returns> 8 public static T DeepClone<T>(this T obj) where T : class 9 {10     return obj != null ? obj.ToJson().FromJson<T>() : null;11 }
View Code

其它還有使用表達(dá)式。

總結(jié):

  1. 手動復(fù)制性能最好,但是遇到很復(fù)雜的類的時(shí)候,工作量很大。

  2. 反射和序列化比起來,序列化更簡單。

上述內(nèi)容就是克隆對象的方法有哪些,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI