java的基础类型及字节大小


C++的基础类型:

  主要diff:char,long

基本数据类型种类:

  有8种,分别是:byte、short、int、long;float、double;boolean;char;

8种基本数据类型,主要分4类,分别如下:

  整数型:byte(最大256),short(最大65536),int,long;

  浮点型:float,double;

  布尔型:boolean;

  字符型:char;

空间占用:

  bit:计算机的基本单位,代表一个0或1;

  byte:1byte = 8bit;

  short:2byte;

  int:4byte;

  long:8byte;

  float:4byte;

  double:8byte;

  boolean:1byte;

  char:2byte;(采用的unicode编码)