美文网首页
八大基本数据类型的,取值范围,占用字节,占用位数

八大基本数据类型的,取值范围,占用字节,占用位数

作者: XSL521 | 来源:发表于2019-10-09 15:04 被阅读0次

    类型 占用字节 占用位数 取值范围


    byte        1           8          -128    +127 

    short       2           16        -2(15) ~ +2(15)-1

    int           4           32        -2(31) ~  +2(31)-1

    long         8           64        -2(63) ~  +2(63)-1 

    float         4           32           

    double     8           64         

    char         2           16         

    boolean   1           8       

    首先,字节即byte,位即bit;1byte=8bit。

    8中基本数据类型为:

    4种整形:byte(取值-128~127),short(取值-32768~32767),int,long

    2种浮点类型:float,double(3.14F位浮点型,没有F默认为double)

    1种Unicode编码的字符单元的字符型:char

    1中Boolean类型:boolean

    8中类型所占字节和位数如下:

    相关文章

      网友评论

          本文标题:八大基本数据类型的,取值范围,占用字节,占用位数

          本文链接:https://www.haomeiwen.com/subject/wnacyctx.html