场景:

想要将字符串数字“01”转换为int类型的数字1,可使用Integer.parseInt();

 

举例:

String str  = "01";
int num = Integer.parseInt(str);