黑马程序员技术交流社区
标题:
基本数据类型和字符串类型之间的转换
[打印本页]
作者:
伯爵公子
时间:
2015-7-16 09:25
标题:
基本数据类型和字符串类型之间的转换
基本数据类型转字符串类型
方法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");
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2