一,什么是包装类
Java中的基本数据类型没有方法和属性,而包装类就是为了让这些拥有方法和属性,实现对象化交互。
两者之间的代码转化如下图所示,一般就是基本类型首字母的大写,而short和char,对应的则是Integer与Character
数值型包装类都继承至Number,而字符型和布尔型继承至Object。
二.基本数据和包装类之间的转换
主要有两种:
装箱:基本数据类型转换为包装类;
拆箱:包装类转换为基本数据类型。
public class WrapperTestOne {
public static void main(String[] args){
//1.自动装箱
int t1=1;
Integer t2=t1;
//2.手动装箱
Integer t3=new Integer(t1);
System.out.println("int类型t1="+t1);
System.out.println("自动装箱,Integer类型对象t2="+t2);
System.out.println("手动装箱,Integer类型t3="+t3);
//1.自动拆箱
int t4=t2;
//2.手动拆箱
//通过intValue()方法返回int值,还可以利用其他方法装换为其他类型
int t5=t2.intValue();
System.out.println("自动拆箱,int型t4="+t4);
System.out.println("手动拆箱,int型t5="+t5);
}
}
三.基本数据类型和包装类的转换
通过包装类Integer.toString()将整型转换为字符串;
通过Integer.parseInt()将字符串转换为int类型;
通过valueOf()方法把字符串转换为包装类然后通过自动拆箱。
public class WrapperTestTwo {
public static void main(String[] args) {
// TODO Auto-generated method stub
//基本数据类型转换为字符串
int t1=12;
String t2=Integer.toString(t1);
System.out.println("int转换为String:"+t2);
//字符串转换为基本数据类型
//通过paerInt方法
int t3=Integer.parseInt(t2);
//通过valeOf,先把字符串转换为包装类然后通过自动拆箱
int t4=Integer.valueOf(t2);
System.out.println("t3:"+t3);
System.out.println("t4:"+t4);
}
}
总结一下过程如下:
class WrapperDemo{
public static void main(String[] args){
/*
基本数据类型-->字符串
1.基本数据类型 + ""
2.用String类中的静态方法 valueOf(基本数据类型)
字符串-->基本数据类型
1.使用包装类中的静态方法
int parseInt("123")
long parseLong("123")
boolean parseBoolean("false")
只有Character没有对应的parse方法
2.如果字符串被Integer封装成一个对象
可以调用intValue()
*/
//int i = 3;
//String x = i + "";
//String x = String.valueOf(i);
//System.out.println(x);
//String str = "false";
//int i = Integer.parseInt(str);
//System.out.println(i);
Integer i = new Integer("123");
int x = i.intValue();
}
}
再来一个例子:
class WrapperDemo2{
public static void main(String[] args){
/*
基本数据类型 -->包装类
1.通过构造函数来完成
2.通过自动装箱
包装类-->基本数据类型
1.通过intValue()来完成的
2.通过自动拆箱
*/
//int i = 1;
//Integer x = new Integer(x);
//Integer y = 3;//自动装箱
Integer i = new Integer(3);
//int x = i.intValue();
int x = i;//自动拆箱
System.out.println(x);
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/114819.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...