Java中的基本数据类型和包装类型的这些知识,你都知道吗?
2021-05-02 04:28
标签:imu static 就会 throw exception catch 基本数据类型 ring sed Java 中的基本数据按类型可以分为四大类:布尔型、整数型、浮点型、字符型; 这8 种基本类型取值如下: 我们可以看到除 char 的包装类 Character 和 int 的包装类 Integer之外, 首先我们来看一道题目? 让我们来看一下答案: number1和number2均赋值为了127,number3和number4均赋值为了128, 我们来看一下Integer中的valueOf的源码: 我们看到如果传入的参数在[IntegerCache.low,IntegerCache.high]之间就返回IntegerCache.cache[i + (-IntegerCache.low)],如果值没在这里面,就创建一个新对象返回; 我们看到IntegerCache.low为-128,IntegerCache.high为127; 我们再来看一下以下代码: 让我们来看一下答案: 我们来看一下Boolean的valueOf代码: 再来看一下TRUE和FALSE的定义: 可以看到它们使用静态 final 定义,就会返回静态值,所以答案2中返回都是true。 Double、Float的valueOf方法的实现是类似的,但是它们的valueOf与Integer、Short、Byte、Character、Long的不同。 我们再看一下下面的代码: 让我们来看一下答案: 看一下Double类型的valueOf的实现 它会返回一个新的Double对象。 Float类型的valueOf的实现与Double类型类似。 扫下方二维码即可关注,微信公众号:code随笔 Java中的基本数据类型和包装类型的这些知识,你都知道吗? 标签:imu static 就会 throw exception catch 基本数据类型 ring sed 原文地址:https://www.cnblogs.com/nicaicai/p/13204583.htmlJava中的基本数据类型和包装类型
这四大类包含 8 种基本数据类型。
数据类型
代表含义
默认值
取值
包装类
boolean
布尔型
false
0(false) 到 1(true)
Boolean
byte
字节型
(byte)0
﹣128 到 127
Byte
char
字符型
‘\u0000‘(空)
‘\u0000‘ 到 ‘\uFFFF‘
Character
short
短整数型
(short)0
-$2^{15}$ 到 $2^{15}$
﹣1
Short
int
整数型
0
﹣$2^{31}$ 到 $2^{31}$﹣1
Integer
long
长整数型
0L
﹣$2^{63}$ 到 $2^{63}$﹣1
Long
float
单浮点型
0.0f
1.4e-45 到 3.4e+38
Float
double
双浮点型
0.0d
4.9e-324 到 1.798e+308
Double
其他基本数据类型的包装类只需要首字母大写即可。包装类的作用和特点,本文下半部分详细讲解。
这些都是我们很熟悉的知识了,那下面的知识你有了解吗?你可能不知道的知识点
下面这段代码输出什么呢?public class Demo1 {
public static void main(String[] args) {
Integer number1 = 127;
Integer number2 = 127;
System.out.println("number1==number2判断的值为" + (number1 == number2));
Integer number3 = 128;
Integer number4 = 128;
System.out.println("number3==number4判断的值为" + (number3 == number4));
}
}
那为什么number1==number2为true,number3==number4为false呢? public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i
实际上这是一个 高频区间的数据缓存,我们再来看看IntegerCache类的实现:private static class IntegerCache {
static final int low = -128;
static final int high;
static final Integer cache[];
static {
// high value may be configured by property
int h = 127;
String integerCacheHighPropValue =
sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
if (integerCacheHighPropValue != null) {
try {
int i = parseInt(integerCacheHighPropValue);
i = Math.max(i, 127);
// Maximum array size is Integer.MAX_VALUE
h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
} catch( NumberFormatException nfe) {
// If the property cannot be parsed into an int, ignore it.
}
}
high = h;
cache = new Integer[(high - low) + 1];
int j = low;
for(int k = 0; k = 127;
}
private IntegerCache() {}
}
所以在通过valueOf方法创建Integer对象的时候,如果数值在[-128,127]之间,便返回指向IntegerCache.cache中已经存在的对象的引用;否则创建一个新的Integer对象。
与Integer类似,有高频区间数据缓存的包装类还有:
public class Demo2 {
public static void main(String[] args) {
Boolean bool1 = false;
Boolean bool2 = false;
Boolean bool3 = true;
Boolean bool4 = true;
System.out.println("bool1==bool2判断的值为"+(bool1==bool1));
System.out.println("bool3==bool4判断的值为"+(bool3==bool4));
}
}
public static Boolean valueOf(boolean b) {
return (b ? TRUE : FALSE);
}
public static final Boolean TRUE = new Boolean(true);
public static final Boolean FALSE = new Boolean(false);
public class Demo3 {
public static void main(String[] args) {
Double d1 = 20.0;
Double d2 = 20.0;
System.out.println("d1==d2判断的值为" + (d1 == d2));
Double d3 = 30.0;
Double d4 = 30.0;
System.out.println("d3==d4判断的值为" + (d3 == d4));
}
}
public static Double valueOf(String s) throws NumberFormatException {
return new Double(parseDouble(s));
}
看一下Float类型的valueOf的实现public static Float valueOf(String s) throws NumberFormatException {
return new Float(parseFloat(s));
}
欢迎关注
文章标题:Java中的基本数据类型和包装类型的这些知识,你都知道吗?
文章链接:http://soscw.com/index.php/essay/81172.html