8大基本包装类

Posted ss-123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8大基本包装类相关的知识,希望对你有一定的参考价值。

byte    Byte

short    Short

int     Integer

long    Long

float    Float

double   Double

char    Character

boolean  Boolean

 

Integer i = new Integer(88);

System.out.println(Integer.MAX_VALUE);  // 最大值

i = new Integer.parseInt("123");  //将字符串转为数字

i = new Integer("222");  //字符串构造器

 

以上是关于8大基本包装类的主要内容,如果未能解决你的问题,请参考以下文章

常用API(包装类SystemMathArrays大数据运算)

大数据必学Java基础(四十八):包装类和日期类的讲解

Java包装类 — 自动装箱自动拆箱

7包装类SystemMathArrays大数据运算

java中8种基本类型包装类常量池

Java高阶部分知识点汇总-基本类型的包装类详讲