如何将对象“克隆”到子类对象中?

时间:2009-07-07 15:34:51

标签: c# object copy subclass

我有一个课程A和一个继承课程B的课程A,并使用更多字段对其进行扩展。

拥有a类型的对象A,如何创建类型为b的对象B,其中包含对象a包含的所有数据?

我尝试了a.MemberwiseClone(),但这只给了我另一个类型A对象。我无法将A转换为B,因为继承关系只允许相反的转换。

这样做的正确方法是什么?

10 个答案:

答案 0 :(得分:11)

我会向A添加一个复制构造函数,然后向B添加一个新的构造函数,它接受A的实例并将其传递给base的复制构造函数。

答案 1 :(得分:9)

没有办法自动将这种语言构建到语言中......

一个选项是向B类添加一个构造函数,它将A类作为参数。

然后你可以这样做:

B newB = new B(myA);

在这种情况下,构造函数可以根据需要复制相关数据。

答案 2 :(得分:4)

您可以使用反射来实现此目的。

优势:可维护性。无需更改复制构造函数或类似函数,添加或删除属性。

缺点:表现。反思很慢。我们仍在谈论平均大小的课程毫秒。

这是一个基于反射的浅拷贝实现,支持使用扩展方法复制到子类:

public static TOut GetShallowCopyByReflection<TOut>(this Object objIn) 
{
    Type inputType = objIn.GetType();
    Type outputType = typeof(TOut);
    if (!outputType.Equals(inputType) && !outputType.IsSubclassOf(inputType)) throw new ArgumentException(String.Format("{0} is not a sublcass of {1}", outputType, inputType));
    PropertyInfo[] properties = inputType.GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.FlattenHierarchy);
    FieldInfo[] fields = inputType.GetFields(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.FlattenHierarchy);
    TOut objOut = (TOut)Activator.CreateInstance(typeof(TOut));
    foreach (PropertyInfo property in properties)
    {
        try
        {
            property.SetValue(objIn, property.GetValue(objIn, null), null);
        }
        catch (ArgumentException) { } // For Get-only-properties
    }
    foreach (FieldInfo field in fields)
    {
        field.SetValue(objOut, field.GetValue(objIn));
    }
    return objOut;
}

此方法将复制所有属性 - 私有和公共,以及所有字段。通过引用复制属性,使其成为浅层副本。

单元测试:

[TestClass]
public class ExtensionTests {
    [TestMethod]
    public void GetShallowCloneByReflection_PropsAndFields()
    {
        var uri = new Uri("http://www.stackoverflow.com");
        var source = new TestClassParent();
        source.SomePublicString = "Pu";
        source.SomePrivateString = "Pr";
        source.SomeInternalString = "I";
        source.SomeIntField = 6;
        source.SomeList = new List<Uri>() { uri };

        var dest = source.GetShallowCopyByReflection<TestClassChild>();
        Assert.AreEqual("Pu", dest.SomePublicString);
        Assert.AreEqual("Pr", dest.SomePrivateString);
        Assert.AreEqual("I", dest.SomeInternalString);
        Assert.AreEqual(6, dest.SomeIntField);
        Assert.AreSame(source.SomeList, dest.SomeList);
        Assert.AreSame(uri, dest.SomeList[0]);            
    }
}

internal class TestClassParent
{
    public String SomePublicString { get; set; }
    internal String SomeInternalString { get; set; }
    internal String SomePrivateString { get; set; }
    public String SomeGetOnlyString { get { return "Get"; } }
    internal List<Uri> SomeList { get; set; }
    internal int SomeIntField;
}

internal class TestClassChild : TestClassParent {}

答案 3 :(得分:3)

使用Factory Method Pattern

    private abstract class A
    {
        public int P1 { get; set; }

        public abstract A CreateInstance();

        public virtual A Clone()
        {
            var instance = CreateInstance();
            instance.P1 = this.P1;
            return instance;
        }
    }

    private class B : A
    {
        public int P2 { get; set; }

        public override A CreateInstance()
        {
            return new B();
        }

        public override A Clone()
        {
            var result = (B) base.Clone();
            result.P2 = P2;
            return result;
        }
    }

    private static void Main(string[] args)
    {
        var b = new B() { P1 = 111, P2 = 222 };

        var c = b.Clone();
    }

答案 4 :(得分:1)

在B中创建一个允许传入A类对象的ctor,然后复制A字段并根据需要设置B字段。

答案 5 :(得分:0)

你可以在B类上创建一个接收基类的Convert方法。

public ClassB Convert(ClassA a)
{
   ClassB b = new ClassB();
   // Set the properties
   return b;
}

你也可以让ClassB的构造函数接受ClassA的对象。

答案 6 :(得分:0)

不,你不能这样做。实现此目的的一种方法是在B类上添加一个接受B类参数的构造函数,并手动添加数据。

所以你可以这样:

public class B
{
  public B(A a)
  {
    this.Foo = a.foo;
    this.Bar = a.bar;
    // add some B-specific data here
  }
}

答案 7 :(得分:0)

在基类中添加下面的CreateObject虚拟方法......

    public virtual T CreateObject<T>()
    {
        if (typeof(T).IsSubclassOf(this.GetType()))
        {
            throw new InvalidCastException(this.GetType().ToString() + " does not inherit from " + typeof(T).ToString());
        }

        T ret = System.Activator.CreateInstance<T>();

        PropertyInfo[] propTo = ret.GetType().GetProperties();
        PropertyInfo[] propFrom = this.GetType().GetProperties();

        // for each property check whether this data item has an equivalent property
        // and copy over the property values as neccesary.
        foreach (PropertyInfo propT in propTo)
        {
            foreach (PropertyInfo propF in propFrom)
            {
                if (propT.Name == propF.Name)
                {
                    propF.SetValue(ret,propF.GetValue(this));
                    break;
                }
            }
        }

        return ret;
    }

然后说你想从超类中调用

创建一个真实的子类对象
this.CreateObject<subclass>();

应该这样做!

答案 8 :(得分:0)

虽然没有人建议这一点(并且这不会对所有人都有效),但应该说,如果您可以选择从一开始就创建对象b,那么请执行此操作而不是创建对象然后复制对象b。例如,假设您使用相同的函数并拥有以下代码:

var a = new A();
a.prop1 = "value";
a.prop2 = "value";
...
// now you need a B object instance...
var b = new B();
// now you need to copy a into b...

不要担心最后一个评论步骤,而是先从b开始并设置值:

var b = new B();
b.prop1 = "value";
b.prop2 = "value";

请不要贬低我,因为你觉得上面是愚蠢的!我遇到过许多程序员,他们如此专注于他们的代码,他们没有意识到更简单的解决方案就是盯着他们。 :)

答案 9 :(得分:0)

这是一种使用构造函数对我有用的方法:

class ClassA():
    def __init__(self, **attrs):
        self.__dict__.update(**attrs)
        ...

b = ClassA(**other_class.__dict__)

也可以使用继承

class Fields(AbstractType):
    def __init__(self, **attrs):
        self.__dict__.update(**attrs)

    my_date = Field(Date, required=True)
    text_field = Field(String, required=True)
    ...

class MyClass(InputObjectType, Fields):
    pass


class MyClassWithError(ObjectType, Fields):
    error = Field(String, required=True)


error_class = MyClassWithError(**my_class.__dict__)
error_class.error = "my error description"