怎样将string类型的变量转化为int型
1个回答
展开全部
在 Java 中要将 String 类型转化为 int 类型时,需要使用 Integer 类中的 parseInt() 方法或者 valueOf() 方法进行转换.
例1:
String str = "123";try { int a = Integer.parseInt(str);} catch (NumberFormatException e) { e.printStackTrace();}
例2:
String str = "123";try { int b = Integer.valueOf(str).intValue()} catch (NumberFormatException e) { e.printStackTrace();}
例1:
String str = "123";try { int a = Integer.parseInt(str);} catch (NumberFormatException e) { e.printStackTrace();}
例2:
String str = "123";try { int b = Integer.valueOf(str).intValue()} catch (NumberFormatException e) { e.printStackTrace();}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询