1、基本类型的包装类

  1. ![09.png](https://cdn.nlark.com/yuque/0/2022/png/28344462/1652105423504-2e8e5132-7e16-4f21-b649-c43554a8be8e.png#clientId=u851c4cf3-a4ff-4&crop=0&crop=0&crop=1&crop=1&from=ui&id=ufcbace3a&margin=%5Bobject%20Object%5D&name=09.png&originHeight=408&originWidth=657&originalType=binary&ratio=1&rotation=0&showTitle=false&size=17532&status=done&style=none&taskId=u94f3100d-e94f-4c11-8eaa-e0c5b6f23ef&title=)

2、基本类型转字符串

  1. 利用包装类提供的toString方法

3、字符串转基本类型

  1. 除了Character之外,其他包装类都有 parseXxx(String s) 的静态方法可以将字符串转为基本类型<br /> 例:Integer.parseInt(“5”);<br /> Double.parseDouble(“3.14”);