將我的博客複製一份至《海外博客》
由於數據量較大,請您耐心等待複製完成
2008 (2)
public class StringToIntConverter { public static void main(String args[]) { String str = "598"; int int1 = Integer.parseInt(str); System.out.println( "int1 = " + int1 ); }}