欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Integer.parseInt的作用

程序员文章站 2024-03-07 13:04:51
...

nteger.parseInt(String)的作用就是将String字符类型数据转换为Integer整型数据。

 

 String intStr = "123";
//        把一个特定的字符串转换成intbianliagn
        int it1 = Integer.parseInt(intStr);

 

相关标签: Integer