工作学习记录----Struct的数据读取

struct解报读取数据流的时候,要注意到一个高低位的问题.
每台机器都有不同,需要调试.
具体设置是在解包的时候,在解包规则里设置它.

Character Byte order Size and alignment
@ native native            凑够4个字节
= native standard        按原字节数
< little-endian standard        按原字节数
> big-endian standard       按原字节数
! network (= big-endian)

standard       按原字节数

这表的来源是

http://www.cnblogs.com/gala/archive/2011/09/22/2184801.html

这篇文章给了我很好的启蒙阿.
顺便把另外一张表备份XD

 

Format C Type Python 字节数
x pad byte no value 1
c char string of length 1 1
b signed char integer 1
B unsigned char integer 1
? _Bool bool 1
h short integer 2
H unsigned short integer 2
i int integer 4
I unsigned int integer or long 4
l long integer 4
L unsigned long long 4
q long long long 8
Q unsigned long long long 8
f float float 4
d double float 8
s char[] string 1
p char[] string 1
P void * long

 

如有不对,欢迎指教,谢谢~

 

你可能感兴趣的:(struct)