编程语言
首页 > 编程语言> > JAVA编程思想笔记 第二章 一切都是对象

JAVA编程思想笔记 第二章 一切都是对象

作者:互联网

2.1 基本概念

引用

创建对象:

存储

基本类型

基本类型 大小 最大值 最小值 默认值
boolean - - - false
char 16 bits Unicode 0 Unicode 2^16-1 '\u0000'(null)
byte 8 bits -128 127 (byte)0
short 16 bits -2^15 2^15-1 (short)0
int 32 bits -2^31 2^31-1 0
long 64 bits -2^63 2^63-1 0L
float 32 bits IEEE754 IEEE754 0.0f
double 64 bits IEEE754 IEEE754 0.0d
void - - - -

-高精度:BigInteger BigDecimal

数组

对象/元素生命周期

创建对象

static关键字

标签:IEEE754,JAVA,String,对象,编程,作用域,引用,第二章,bits
来源: https://www.cnblogs.com/fireyjy/p/12489971.html