提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
要将字符串转换为原始类型,请使用适当的包装器类的parse方法。
public class Main { /* 时 代 J a v a - N o w J a v a . c o m 提 供 */ public static void main(String[] args) { String s = "10"; int x = Integer.parseInt(s); System.out.println(x); } }