Closed 92daxia closed 3 weeks ago
If not registered, is it compatible to deserialize class attributes after adding or deleting them. v1 SomeClass { int a; String b; long c; }
v2(deserialize) SomeClass { String b; long c; int d; }
Yes, you can do that. Type compatibility is not related class registration.
Question
If not registered, is it compatible to deserialize class attributes after adding or deleting them. v1 SomeClass { int a; String b; long c; }
v2(deserialize) SomeClass { String b; long c; int d; }