内存占用字节 取值范围 备注
    byte 1 -128~127
    short 2 -32768~32767
    int(默认) 4 -2^31~2^31-1
    long 8 -2^63~2^63-1 定义时需要在数据后面加一个L,如100L,否则就认为是int类型