1.数字后的ull
例如 line += addr & 0x3fULL; 表示的是unsigned long long,但是前面的0x3f不是16位的吗,加个后缀就变成64位了?
line += addr & 0x3fULL;