parseint(strc);中的parseint应该写成parseInt。
Integer i2=Integer.parseInt(strc);
平时写程序的时候注意养成良好的书写习惯就可以避免很多的错误。还有就是可以用“.”的时候尽量不要自己拼写。
方法大小写有误,正确为Integer i2 = Integer.parseInt(strc);
当然这个方法能正确返回int 的 Wrapper 类 Integer 对象,所以只是大小写的问题,呵呵
int i2=Integer.parseInt(strc);
一个是返回值是int的,第二个是注意大小写.
String 不能被继承,
是Finnal
String strc="abc";
int i2=Integer.parseInt(strc);