在程序开发中,我们经常需要在基本数据类型和字符串之间进行转换。
其中,基本类型转换为字符串有三种方法:
- 使用包装类的 toString() 方法
- 使用String类的 valueOf() 方法
- 用一个空字符串加上基本类型,得到的就是基本类型数据对应的字符串
//将基本类型转换为字符串
int c=10;
String str1=Integer.toString(c);//method one
String str2=String.valueOf(c);//method two
String str3=c+"";//method three
再来看,将字符串转换成基本类型有两种方法:
- 调用包装类的 parseXxx 静态方法
- 调用包装类的 valueOf() 方法转换为基本类型的包装类,会自动拆箱
//将字符串转换为基本类型
String str="8";
int d=Integer.parseInt(str);//method one
int e=Integer.valueOf(str);//method two