我试图从文件中读取无符号整数(存储为连续字节)并将它们转换为整数.我试过这个: file = File.new(filename,"r")num = file.read(2).unpack("S") #read an unsigned shortputs num #value will be less than expected 我在
file = File.new(filename,"r") num = file.read(2).unpack("S") #read an unsigned short puts num #value will be less than expected
我在这做错了什么?
你没有读足够的字节.正如你在对tadman的回答的评论中所说,你得到202而不是3405691582请注意,0xCAFEBABE的前2个字节是0xCA = 202
如果你真的想要一个数字中的所有8个字节,那么你需要读取超过unsigned short的内容
尝试
num = file.read(8).unpack("L_")
下划线假设本机long将是8个字节,绝对不能保证.