校招刷题群
高效刷题 迎战校招
校招精选试题
近年面笔经面经群内分享
Java刷题群 前端刷题群 产品运营群
首页 > java语言 > 构造函数&初始化
题目

介绍一下java的基本类型

解答

byte:1字节 -128~127

short:2字节 -2^15~2^15-1

int :4字节 -2^31~2^31-1

long:8字节 -2^63~2^63-1

boolean:1字节 true false(java中不能以0或非0代替)

float: 4字节 -3.403E38~3.403E38

double:8字节 -1.798E308~- 4.9E324

char:2字节 ’\u0000‘~' ’\uffff '(16进制的,换算过来即0~65535)

C 7条回复 评论
寒武紀三葉草

认真看完了,浅显易懂,学习到了。

发表于 2023-06-30 21:00:00
0 0
慨然思既往

现在大二,希望自己能有坚定的觉悟和脚踏实地的努力

发表于 2021-09-14 12:25:00
0 0
DaMeng

分为整型byte 1byte
short 2byte
int 4byte
long 8byte
浮点型float 4byte
double 8byte
布尔类型boolean 1byte
字符类型char 2byte

发表于 2020-08-24 10:29:37
0 0
龙猫

整型:byte short int long
浮点型:float double
字符型:char
布尔型:boolean

发表于 2020-08-24 10:25:36
0 0
五分i

8个基本数据类型int,short,long,double,float,char,boolean,byte

发表于 2020-08-24 10:23:44
0 0
开轩

9种
整型 byte short int long
字符型 char
浮点型 float double
布尔型 boolean
无返回值 void

发表于 2020-08-24 10:23:00
0 0
拿offer咯

byte,short,int,long,double,flout,char,boolean

发表于 2020-08-24 10:13:42
0 0