是否可以对结构体进行序列化

本文关键字:序列化 结构体 是否 | 更新日期: 2023-09-27 17:50:23

可以直接序列化struct类型吗?

我在类中使用了它,但想知道它是否可能单独用于结构体。

struct student
{
   name string; --string is a reference type
   age int;
   designation string; --string is a reference type
   salary double;
};
class foo
{
 foo(){
   student s;
   s.name = "example";
   serialize(s);
  }
}

这个链接说"我试图让我的结构实现isserializable,但我无法实现所需的构造函数,因为这是一个结构而不是对象。"

是否可以对结构体进行序列化

可以。我只是用下面的代码这样做了。

[Serializable]
public struct TestStruct
{
    public int Value1 { get; set; }
    public int Value2 { get; set; }
    public string Value3 { get; set; }
    public double Value4 { get; set; }
}
TestStruct s1 = new TestStruct();
s1.Value1 = 43265;
s1.Value2 = 2346;
s1.Value3 = "SE";
string serialized = jss.Serialize(s1);
s2 = jss.Deserialize<TestStruct>(serialized);
Console.WriteLine(serialized);
Console.WriteLine(s2.Value1 + " " + s2.Value2 + " " + s2.Value3 + " " + s2.Value4);

它做了什么?正是它应该有的,序列化反序列化struct

输出:

{"Value1":43265,"Value2":2346,"Value3":"SE","Value4":5235.3}
43265 2346 SE 5235.3

有趣,这是TestStruct 序列化反序列化JSON的。

默认构造函数怎么样?所有 struct对象都有一个默认构造函数,它是struct对象的基本属性之一,并且该默认构造函数仅负责将struct对象所需的内存清除为默认值。因此,serializer 已经知道存在默认构造函数,因此可以将其视为常规对象(实际上是)。

指出:

本例使用System.Web.Script.Serialization.JavaScriptSerializer

这个例子假设struct中的所有变量都是属性。如果它们不是,那么这个答案可能不起作用。它似乎为我工作与fields代替properties,但这不是一个最佳实践。您应该始终确保所有对象中的public变量为properties

好了,我来简化一下,我是这样做的

[StructLayout(LayoutKind.Sequential, Pack = 1)]
public class IClockFingerprintTemplate
{
    public ushort Size;
    public ushort PIN;
    public byte FingerID;
    public byte Valid;
    [MarshalAs(UnmanagedType.ByValArray)]
    public byte[] Template;
}
    protected static byte[] RawSerialize(object item, Type anyType)
    {
        int structSize;
        byte[] bff;
        IntPtr ptr;
        structSize = ((IClockFingerprintTemplate)item).Size; 
        ptr = Marshal.AllocHGlobal(structSize);
        Marshal.StructureToPtr(item, ptr, true);
        bff = new byte[structSize];
        Marshal.Copy(ptr, bff, 0, 6);
        Array.Copy(((IClockFingerprintTemplate)item).Template, 0, bff, 6, structSize - 6);
        Marshal.FreeHGlobal(ptr);
    }