1

我很难理解对 ISerializable 接口的需求......我想我在这个主题中遗漏了一些非常重要的东西,所以如果有人能帮我一把,我将不胜感激。

这工作得很好 -

[Serializable]
    class Student
    {
        public int age;
        public string name;

        public Student()
        {
            age = 0;
            name = null;
        }
    }
 class Program
    {
        public static void Main()
        {
            Stream stream = File.Open("Test123.txt", FileMode.Create);

            BinaryFormatter bf = new BinaryFormatter();

            Student s1 = new Student();
            s1.name = "Peter";
            s1.age = 50;
            bf.Serialize(stream, s1);

            stream.Close();

            Stream stream2 = File.Open("Test123.txt", FileMode.Open);

            Student s2 = (Student)bf.Deserialize(stream2);

            Console.WriteLine(s2.age);

        }

它在没有实现 ISerializable 并且没有覆盖 GetObjectData() 的情况下工作。怎么会这样?那么接口有什么用呢?

谢谢。

4

2 回答 2

5

Serializable 使用默认序列化。ISerializable 接口的重点是覆盖序列化,以便您可以拥有自己的。

于 2013-10-13T12:43:22.113 回答
2

除了@Marcus 回答之外,Serializable 和 ISerializable 仅适用于.Net 中内置的 *Formatter(通常是BinaryFormatter和)序列化程序SoapFormatter

如果属性存在但接口不存在,它们将使用反射来查找所有属性及其值。

不同的序列化器有不同的自定义序列化方式(尽管大多数都可以选择只使用反射)

例如,XmlSerializer 具有不同的接口,IXmlSerializable并且也不检查Serializable属性。查看文档以了解您使用的序列化程序以了解故事内容。例如,Wcf 使用DataContract属性来确定序列化的方式和内容

于 2013-10-13T12:49:32.140 回答