Integer.parseInt的作用
程序员文章站
2024-03-07 13:04:51
...
nteger.parseInt(String)的作用就是将String字符类型数据转换为Integer整型数据。
String intStr = "123";
// 把一个特定的字符串转换成intbianliagn
int it1 = Integer.parseInt(intStr);
上一篇: 使用Integer -128 ~127 可能导致的线程问题。
下一篇: java内部类使用总结