将我的博客复制一份至《海外博客》
由于数据量较大,请您耐心等待复制完成
2008 (2)
public class StringToIntConverter { public static void main(String args[]) { String str = "598"; int int1 = Integer.parseInt(str); System.out.println( "int1 = " + int1 ); }}