I have to send through the network a complex object which references are almost all of them Null, but I wonder about the size of this object with this null references inside.

Which is the size of a null value contained in a serialized object?

I am evaluating if it is better to change the communication protocol, sending a simpler object, at the cost of not reusing the complex one, and make several simple one for each kind of communication I have.

link|improve this question

73% accept rate
2  
This is really easy to find out. Serialize an object to a file and look how large the file will be. Compare this to how large the file is when you serialize a special data transfer object which doesn't contain the extra fields. – Jesper Dec 5 '11 at 10:19
feedback

1 Answer

up vote 9 down vote accepted

The null itself should be 1 byte (0x70) as seen from Object Serialization Stream Protocol

link|improve this answer
1  
FWIW I just wrote a small test and indeed it appears to be 1 byte for a null. – Sean Owen Dec 5 '11 at 10:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.