c++基本数据类型

整型:

short 2字节 -2^15 -- 2^15
int 4字节 -2^31 -- 2^31
long window 4字节 ,linux (32位) 4字节 ,linux(64位)8字节 -2^31 -- 2^31
long long 8字节 -2^63 -- 2^63

实型(浮点型):

单精度float 4字节 7位有效数字
双精度double 8字节 15~16位有效数字

字符型:

char( 代表一个字符) 1个字节
字符变量并不是把字符本身放到内存中,而是将字符的ascii码放入到内存中
char a='a';

字符串型:

1,char str[] ="hello world";
2,string str="hello world"; //使用时需要配置头文件#include

布尔型:

bool bl=true/false; 1字节

==================================================================
java 基本数据类型
四类八种
整型:
byte 1字节
short 2字节
int 4字节
long 8字节
浮点型:
单精度float 4字节
双精度double 8字节
布尔型:
boolean 1字节

字符型:
char 1字节

java基本数据类型没有string

你可能感兴趣的:(c++基本数据类型)