基本数据类型也不是对象,当我们想要用一些方法的时候,我们必须要将基本数据类型变成包装类,然后去使用里面的方法
下面是基本数据类型所对应的包装类
byte……Byte
short……Short
long……Long
boolean……Boolean
char……Character
int……Integer
float……Float
double……Double
注意char与int的包装类不同,其他的都是符合类名的书写情况,直接将首字母改为大写
包装类的方法都差不多,我用Integer举栗子
Integer的valueof方法
Integer i=Integer.valueof(3)
Integer的parseInt方法
Integer i=Integer.parseInt("3");
i.intValue();还有longValue();floatValue();doubleValue();byteValue();shortValue()方法,分别对用其相应的包装类方法
i.toString();
原文:https://www.cnblogs.com/han3/p/11100380.html