xxd binary dump problems
问题 Is the above output in the format that should be expected from xxd or does the presence of the bizzare characters on the right suggest i've done something wrong? I'm attempting to serialise a simple linked list and that's the output i get. Would failing to remove the sentinal character "\0" from the serialisation cause the error? 回答1: I'm guessing you are serializing as binary not as strings , so this is normal. Each two hex digits on the left correspond to a one character on the right. This