JAVA中intString的类型转换
Posted 爱吃橙子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA中intString的类型转换相关的知识,希望对你有一定的参考价值。
String字符串转int类型
s="123";
int i;
第一种方法:i=Integer.parseInt(s);
第二种方法:i=Integer.valueOf(s).intValue();
int类型转string字符串
int i=123;
String s="";
第一种方法:s=i+"";
第二种方法:s=String.valueOf(i);
以上是关于JAVA中intString的类型转换的主要内容,如果未能解决你的问题,请参考以下文章