.NET 中的深拷贝实现方法详解

在 .NET 中实现深拷贝(Deep Copy)有几种常用方法,深拷贝是指创建一个新对象,并递归地复制原对象及其所有引用对象,而不仅仅是复制引用。

1. 使用序列化/反序列化

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.IO;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
public static class ObjectCopier
{
    public static T DeepCopy(T obj)
    {
        if (!typeof(T).IsSerializable)
        {
            throw new ArgumentException("The type must be serializable.", nameof(obj));
        }
        if (ReferenceEquals(obj, null))
        {
            return default;
        }
        IFormatter formatter = new BinaryFormatter();
        using (var stream = new MemoryStream())
        {
            formatter.Serialize(stream, obj);
            stream.Seek(0, SeekOrigin.Begin);
            return (T)formatter.Deserialize(stream);
        }
    }
}

2. 使用 JSON 序列化(Newtonsoft.Json 或 System.Text.Json)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 使用 Newtonsoft.Json
using Newtonsoft.Json;
public static T DeepCopy(T obj)
{
    var json = JsonConvert.SerializeObject(obj);
    return JsonConvert.DeserializeObject(json);
}
// 使用 System.Text.Json (推荐.NET Core 3.0+)
using System.Text.Json;
public static T DeepCopy(T obj)
{
    var json = JsonSerializer.Serialize(obj);
    return JsonSerializer.Deserialize(json);
}

3. 实现 ICloneable 接口(手动实现)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public class MyClass : ICloneable
{
    public int Value { get; set; }
    public MyOtherClass Other { get; set; }
    public object Clone()
    {
        var copy = (MyClass)MemberwiseClone(); // 浅拷贝
        copy.Other = (MyOtherClass)Other.Clone(); // 深拷贝引用类型
        return copy;
    }
}
public class MyOtherClass : ICloneable
{
    public string Name { get; set; }
    public object Clone()
    {
        return MemberwiseClone(); // 浅拷贝(因为只有值类型)
    }
}

4. 使用 AutoMapper(适用于复杂对象)

1
2
3
4
5
6
7
8
using AutoMapper;
var config = new MapperConfiguration(cfg =>
{
    cfg.CreateMap();
    cfg.CreateMap();
});
var mapper = config.CreateMapper();
var copy = mapper.Map(original);

5. 注意事项

  • 序列化方法要求所有相关类都是可序列化的(有 [Serializable] 特性或可以被 JSON 序列化)
  • 循环引用可能导致堆栈溢出或序列化异常
  • 性能考虑:对于大型对象图,序列化方法可能较慢
  • 某些特殊类型(如委托、COM 对象)可能无法正确拷贝

6. 推荐方法

  • 对于简单对象:使用 JSON 序列化(System.Text.Json 性能较好)
  • 对于复杂对象图:考虑实现 ICloneable 或使用 AutoMapper
  • 对于性能敏感场景:考虑手动实现深拷贝逻辑

选择哪种方法取决于具体需求、对象复杂度和性能要求。

到此这篇关于.NET 中的深拷贝实现方法的文章就介绍到这了,更多相关.net深拷贝内容请搜索IT俱乐部以前的文章或继续浏览下面的相关文章希望大家以后多多支持IT俱乐部!

本文收集自网络,不代表IT俱乐部立场,转载请注明出处。https://www.2it.club/code/asp-net/15067.html
上一篇
下一篇
联系我们

联系我们

在线咨询: QQ交谈

邮箱: 1120393934@qq.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部