标签:style java常用类 方法 bsp string类 parse 类型 常用 两种
以下是常用的各两种方法(各类提供了构造方法,静态方法)
一、基本数据类型 转化为 包装类(装箱)
例:int i=10;
Integer num=i;//num=10
二、包装类 转化为 基本数据类型 (拆箱)
例:Integer num=10;
int i=num;//i=10
三、基本数据类型 转化为 String类
例:int i=10;
String str=i+‘‘ ‘‘;// "10"
四、String类 转化为 基本数据类型
例:String str="123";
int i=Integer.parseInt(str);//123
五、包装类 转化为 String类
例:Integer num=123;
String str=num+"";//"123"
六、String类 转化为 包装类
例:String str="123";
Integer num=Integer.parseInt(str);//123
标签:style java常用类 方法 bsp string类 parse 类型 常用 两种
原文地址:https://www.cnblogs.com/64Byte/p/12167960.html