1.數字后的ull
例如 line += addr & 0x3fULL; 表示的是unsigned long long,但是前面的0x3f不是16位的嗎,加個后綴就變成64位了?
line += addr & 0x3fULL;