对象类型/// 源对象/// 克隆对象public T Clone(T item) where T _c# 克隆对象">
当前位置:   article > 正文

C#如何深度克隆对象_c# 克隆对象

c# 克隆对象

话不多说上代码:

/// <summary>
/// 利用序列化进行对象拷贝,要求对象是序列化的
/// </summary>
/// <typeparam name="T">对象类型</typeparam>
/// <param name="item">源对象</param>
/// <returns>克隆对象</returns>
public T Clone<T>(T item) where T : class
{
    T result = default(T);
    if (null != item)
    {
        MemoryStream ms = new MemoryStream();
        BinaryFormatter bf = new BinaryFormatter();
        bf.Serialize(ms, item);
        ms.Seek(0, SeekOrigin.Begin);
        result = bf.Deserialize(ms) as T;
        ms.Close();
    }
    return result;
}

[Serializable]
public class Person
{
    public string Name { get; set; }
	public string Age { get; set; }
	public string Birthday { get; set; }
}

//use
//var pClone=Clone(p);
  • 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
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
[Serializable]
public class Person:ICloneable
{
    public string Name { get; set; }
	public string Age { get; set; }
	public string Birthday { get; set; }

    //var pClone=p.Clone() as Person;
    public object Clone()
    {   
        MemoryStream ms = new MemoryStream();
        BinaryFormatter bf = new BinaryFormatter();
        bf.Serialize(ms, this);
        ms.Seek(0, 0);
        object obj = bf.Deserialize(ms);       
        ms.Close();
        return obj;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
public class Person
{
    public string Name { get; set; }
	public string Age { get; set; }
	public string Birthday { get; set; }

    public Person Clone()
    {   
        Person p=new Person();
        p.Name=this.Name;
        p.Age=this.Age;
        p.Birthday=this.Birthday;
        return p;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
利用json来克隆对象,object->json->object
  • 1

参考文章:
C#中的深克隆的两种方式
[c#] 利用序列化进行对象深度clone

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/487412
推荐阅读
相关标签