美文网首页
String转基本数据类型

String转基本数据类型

作者: 阳光丶不错 | 来源:发表于2018-01-26 15:24 被阅读0次

String →int:

int i = Integer.parseInt(String str);

String →double:

double d = Double.parseDouble(String str);

int→String:

String str = String.valueOf(int i);
String str = Integer.toString(int i);

相关文章

网友评论

      本文标题:String转基本数据类型

      本文链接:https://www.haomeiwen.com/subject/pscwaxtx.html