我要说的方法都是在 Integer 类中的 API 文档中能找到的:
1、static int parseInt(String s),这是调用 Integer 的静态成员方法,即 int n = Interger.parseInt(new String("100));//注意次函数会抛出异常!
2、static Integer valueOf(int i) , int intValue(),这两个也都是 Integer 的成员方法:
Integer intg = Integer.valueOf(new String("100"));//注意此函数会抛出异常!
int n = intg.intValue();
这两句话是可以合在一起写的: int n = Integer.valueOf(new String("100")).intValue(); |