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大基本包装类的主要内容,如果未能解决你的问题,请参考以下文章