WCF 反序列化如何在不调用构造函数的情况下实例化对象?

WCF 反序列化有一些神奇之处。如何在不调用其构造函数的情况下实例化数据契约类型的实例?

例如,考虑一下这个数据契约:

[DataContract]
public sealed class CreateMe
{
[DataMember] private readonly string _name;
[DataMember] private readonly int _age;
private readonly bool _wasConstructorCalled;


public CreateMe()
{
_wasConstructorCalled = true;
}


// ... other members here
}

当通过 DataContractSerializer获得这个对象的实例时,您将看到字段 _wasConstructorCalledfalse

那么,周转基金是如何做到这一点的呢?这是一种别人也可以使用的技巧,还是对我们隐藏起来的技巧?

20109 次浏览

FormatterServices.GetUninitializedObject()将在不调用构造函数的情况下创建实例。我通过使用 反光镜和深入挖掘一些核心知识找到了这个类。净序列化类。

我使用下面的示例代码对它进行了测试,它看起来工作得很好:

using System;
using System.Reflection;
using System.Runtime.Serialization;


namespace NoConstructorThingy
{
class Program
{
static void Main()
{
// does not call ctor
var myClass = (MyClass)FormatterServices.GetUninitializedObject(typeof(MyClass));


Console.WriteLine(myClass.One); // writes "0", constructor not called
Console.WriteLine(myClass.Two); // writes "0", field initializer not called
}
}


public class MyClass
{
public MyClass()
{
Console.WriteLine("MyClass ctor called.");
One = 1;
}


public int One { get; private set; }
public readonly int Two = 2;
}
}

Http://d3j5vwomefv46c.cloudfront.net/photos/large/687556261.png

是的,FormatterServices.GetUninitializedObject ()是魔法的源头。

如果要执行任何特殊的初始化,请参见下面的代码。 Http://blogs.msdn.com/drnick/archive/2007/11/19/serialization-and-types.aspx