eclipse运行JAVA问题
publicclassIntegerTest{publicstaticvoidmain(String[]args){inta=10;Integerinteger=newI...
public class IntegerTest
{
public static void main(String[] args)
{
int a = 10;
Integer integer = new Integer(a);
int b = integer.intValue();
System.out.println(a == b);
}
}
在命令行能编译通过 可是在eclipse下却报错
The constructor Integer(int) is undefined
The method intValue() is undefined for the type Integer
at com.fyx.Integer.main(Integer.java:9)
怎么回事啊???? 展开
{
public static void main(String[] args)
{
int a = 10;
Integer integer = new Integer(a);
int b = integer.intValue();
System.out.println(a == b);
}
}
在命令行能编译通过 可是在eclipse下却报错
The constructor Integer(int) is undefined
The method intValue() is undefined for the type Integer
at com.fyx.Integer.main(Integer.java:9)
怎么回事啊???? 展开
展开全部
我这里用eclipse没错,我估计是程序所在包com.fyx中还有一个叫Integer的类,跟java.lang.Integer类二义性了,而这个Integer类中没有intValue这个方法。可以把程序改成:
public class IntegerTest
{
public static void main(String[] args)
{
int a = 10;
java.lang.Integer integer = new java.lang.Integer(a);
int b = integer.intValue();
System.out.println(a == b);
}
}
这样肯定没问题了。
public class IntegerTest
{
public static void main(String[] args)
{
int a = 10;
java.lang.Integer integer = new java.lang.Integer(a);
int b = integer.intValue();
System.out.println(a == b);
}
}
这样肯定没问题了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的JDK版本太低了。
或者你的Eclipse设置有问题。
在你工程属性中的Java Compiler 中选中1.5或者1.6就没事了
或者你的Eclipse设置有问题。
在你工程属性中的Java Compiler 中选中1.5或者1.6就没事了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
说是Integer(int )未定义,iintValue也未定义,应该是
没有导入包吧,在eclipse下要导入Integer所在的包
没有导入包吧,在eclipse下要导入Integer所在的包
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询