JAVA基本数据类型的字节与位数

  • 变量名称   字节    位数
  • byte           1      8
  • short          2     16
  • int             4     32
  • long          8     64
  • float          4     32
  • double       8    64
  • char           2     16
  • boolean     1       8

猜你喜欢

转载自blog.csdn.net/qq_41331645/article/details/80942308