- 包装类除了有引用支持外,还提供数据类型转换功能
demo1 字符串转数值
String str = "123";
int num = Integer.parseInt(str);// 字符串转为int---转换过程中,字符串必须都由数组组成,否则报错!!!(NumberFormatException)
System.out.println(num * num);
demo2 字符串转boolean
String str = "false";
boolean flag = Boolean.parseBoolean(str);// 字符串转boolean,字符串内容只可是"true","false",其他类型会处理返回"false"
System.out.println(flag);
demo3 其他类型转字符串,拼接上“”就可以了
方法一:
int num = 100;
String str = num + "";// 字符串连接---这种方法会产生无用的垃圾
System.out.print(str.length());
方法二:
- 此方法转换的时候,可以避免一些垃圾产生
int num = 100;
String str = String.valueOf(num);
System.out.print(str.length());
标签:类型转换,String,System,num,str,字符串,9.6,数据,out
From: https://www.cnblogs.com/pansidong/p/17470778.html