• 使用序列化来Clone对象


    精选代码备份
     1     public class ObjectUtils
     2     {
     3         public T Clone<T>(object instance)
     4         {
     5             BinaryFormatter formatter = new BinaryFormatter();
     6             MemoryStream stream = new MemoryStream();
     7             formatter.Serialize(stream, instance);
     8             stream.Seek(0, SeekOrigin.Begin);
     9             T newObject = (T)formatter.Deserialize(stream);
    10             return newObject;
    11         }
    12     }
  • 相关阅读:
    java基础测试
    java随笔
    Android 开机广播的使用
    ZOJ 3715 Kindergarten Election
    LightOJ 1051
    LightOJ 1042
    LightOJ 1049
    LightOJ 1048
    LeightOJ 1046
    LightOJ 1045
  • 原文地址:https://www.cnblogs.com/maozhh/p/2735919.html
Copyright © 2020-2023  润新知