> 백엔드 개발 > C#.Net 튜토리얼 > 객체 복제 방법에 대한 예제 튜토리얼

객체 복제 방법에 대한 예제 튜토리얼

零下一度
풀어 주다: 2017-06-24 09:55:28
원래의
1759명이 탐색했습니다.

 Clone 개체는 개발 과정에서 자주 발생합니다. 얕은 복제가 필요한 경우도 있고, 깊은 복제가 필요한 경우도 있습니다. 구체적인 차이점은 무엇이며, 구현 방법은 무엇입니까?

 딥 클로닝을 구현하는 방법에는 여러 가지가 있습니다.

Manual

코드는 다음과 같습니다.

//手动复制
var user2 = new User
{
	Id = user1.Id,
	Name = new UserName 
	{
		FirstName= user1.Name.FirstName,
		LastName= user1.Name.LastName
	}
};
로그인 후 복사

Reflection

코드는 다음과 같습니다.

1 //反射2 var user3 = user1.Copy() as User;
로그인 후 복사

확장 방법:

 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);   //创建引用对象 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 }
로그인 후 복사
코드 보기

Serialization

코드는 다음과 같습니다.

1 //序列化2 var user4 = user1.DeepClone();
로그인 후 복사

확장 방법:

 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 }
로그인 후 복사
코드 보기

다른 사람들은 표현식을 사용합니다.

요약:

  1. 수동 복사가 성능이 가장 좋지만, 매우 복잡한 클래스를 접할 경우 작업량이 과중해집니다.

  2. 반사 및 직렬화에 비해 직렬화가 더 간단합니다.

위 내용은 객체 복제 방법에 대한 예제 튜토리얼의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿