public class Demo01 {标签:转换,String,System,类型,字符串,println,true,out From: https://www.cnblogs.com/123456dh/p/17119214.html
public static void main(String[] args) {
//基本类型和字符串之间的转换
// 1.基本类型转换为字符串
int num1=15;
//1.使用+ ,后面拼接字符串
String s1=num1+" ";
System.out.println(s1);//15
//使用Integer中的toString()方法
String s2= Integer.toString(num1);
String s3= Integer.toString(num1,16);//转换为16进制
System.out.println(s2);//15
System.out.println(s3);//f
// 2.字符串转换为基本类型
String str="150";//字符串中必须都是数字,否则会报错:NumberFormatException
int s4 = Integer.parseInt(str);
System.out.println(s4);//150
//3.boolean字符串转换为基本类型:"true"-->true,非"true"-->false
String str1="true";
boolean s5 = Boolean.parseBoolean(str1);
System.out.println(s5);//true
String str2="tree";
boolean s6 = Boolean.parseBoolean(str2);
System.out.println(s6);//false
}
}