eclipse中把字符串转成包装类对象出现错误
更新时间2019-07-29 05:52:26
语句为:Integer f = Integer.parseInt("999888");
错误提示Type mismatch: cannot convert from int to Integer
int与Integer不是同一类型,不能直接赋值的
正确的
Integer f = new Integer(Integer.parseInt("999888"));
另外,这个是与eclipse无关的,是java的语法,而eclipse只是一个开发工具(可以做java,php,C/C++等多种语言的)