我必须实现泛型扩展deepclone方法,该方法可以与任何引用类型实例一起使用以获取其深层副本。我将其实现为以下
static class ClassCopy
{
static public T DeepClone<T> (this T instance)
{
if (instance == null) return null;
var type = instance.GetType();
T copy;
var flags = BindingFlags.FlattenHierarchy | BindingFlags.Public | BindingFlags.NonPublic |
BindingFlags.Instance;
var fields = type.GetFields(flags);
// If type is serializable - create instance copy using BinaryFormatter
if (type.IsSerializable)
{
using (var stream = new MemoryStream())
{
var formatter = new BinaryFormatter();
formatter.Serialize(stream, instance);
stream.Position = 0;
copy = (T) formatter.Deserialize(stream);
}
// Copy all fiels which are not marked as serializable
foreach (var field in fields)
{
if (!field.IsNotSerialized) continue;
var value = field.GetValue(instance);
//Recursion!!!
//for each embedded object also create deep copy
value = value != null ? value.DeepClone() : value;
field.SetValue(copy, value);
}
}
else
{
// If type is not serializable - create instance copy using Activator
//(if there is default constructor)
// or FormatterServices ( if there is no constractor)
copy = CreateInstance<T>(type);
foreach (var field in fields)
{
var value = field.GetValue(instance);
//Recursion!!!
value = value != null ? value.DeepClone() : value;
field.SetValue(copy, value);
}
}
//Copy all properties
//In order to copy all backing fields for auto-implemented properties
var properties = type.GetProperties(flags|BindingFlags.SetProperty);
foreach (var property in properties)
{
if (property.CanWrite)
{
var value = property.GetValue(instance);
//Recursion!!!
value = value != null ? value.DeepClone() : null;
property.SetValue(copy, value);
}
}
return copy;
}
private static T CreateInstance<T>(Type t) where T: class
{
T instance;
var constructor = t.GetConstructor(Type.EmptyTypes);
if (constructor != null)
{
instance = Activator.CreateInstance(t) as T;
return instance;
}
instance = FormatterServices.GetUninitializedObject(t) as T;
return instance;
}
}
效果很好。但是如果要克隆的对象及其引用类型字段具有相互引用,则此代码会导致无限循环。 e.g。
private static void Main(string[] args)
{
var parent = new Parent();
parent.Child = new Child();
parent.Child.Parent = parent;
//Infinite Loop!!!
var parent1 = parent.DeepClone();
}
class Parent
{
public Child Child { get; set; }
}
class Child
{
public Parent Parent { get; set; }
}
有没有人知道如何实现这项任务?它应该按字面意思实现,不允许任何变化(这是实习)。非常感谢任何提示!
答案 0 :(得分:4)
深度克隆对象的一个老技巧是对它们进行序列化和反序列化,从而创建新实例。
public T deepClone<T>(T toClone) where T : class
{
string tmp = JsonConvert.SerializeObject(toClone);
return JsonConvert.DeserializeObject<T>(tmp);
}
我与Newtonsoft.Json
进行了广泛的合作,并为您的问题提供了内置的解决方案。默认情况下,它会检测对象是否已经序列化并引发异常。但是,您可以将其配置为序列化对象的引用以获取循环引用。它不是串行化对象,而是序列化对该对象的引用,并保证对对象的每个引用只被序列化一次。
此外,默认设置是仅序列化公共字段/属性。还有一个用于序列化私有字段的附加设置。
public T deepClone<T>(T toClone) where T : class
{
JsonSerializerSettings settings = new JsonSerializerSettings();
settings.PreserveReferencesHandling = PreserveReferencesHandling.Objects;
DefaultContractResolver dcr = new DefaultContractResolver();
dcr.DefaultMembersSearchFlags |= System.Reflection.BindingFlags.NonPublic;
settings.ContractResolver = dcr;
string tmp = JsonConvert.SerializeObject(toClone, settings);
return JsonConvert.DeserializeObject<T>(tmp);
}
所以你可以“欺骗”并使用这样的代码或复制它如何工作来实现保留引用的克隆。你给父母/孩子的例子只是单向克隆很难。 1到多是另一个。
答案 1 :(得分:1)
您可以做的是传递映射到其克隆的Dictionary
个项目。现在该方法将如下所示:
static private T DeepClone<T> (this T instance, IDictionary<object, object> originalToAlreadyCloned) where T: class
现在if (instance == null) return null;
之后你要做的第一件事就是检查instance
中是否有originalToAlreadyCloned
,如果是,请将其退回。
为了填充它,
之后copy = (T) formatter.Deserialize(stream);
copy = CreateInstance<T>(type);
致电originalToAlreadyCloned.Add(instance, copy);
最后,提供一种新的顶级方法:
只需拨打static private T DeepClone<T> (this T instance) where T: class
的 DeepClone(instance, new Dictionary<object, object>());
顺便说一句,value = value != null && value.GetType().IsClass? value.DeepClone() : null;
似乎错了。你所说的是,如果value
不是类,则将其设置为null。但如果它不是一个类,通常不能将它设置为null。我不确定你为什么不克隆这些项目,以及为什么DeepClone
仅限于类。