基本数据类型转字符串类型
方法1:基本数据类型+“”;
- System.out.println(3+"");
复制代码
方法2:基本数据类型对应的类.toString(基本数据类型值);
- System.out.println(Integer.toString(34));
复制代码
字符串转基本数据类型
用基本数据类型的包装类实现;- int i = Integer.parseInt(String str);
- //int a = Integer.parseInt(123);
- boolean b = Boolean.parseBoolean("true");
复制代码 |
|