我正在使用 Eclipse JUno,我在使用 arraylist 的 .add() 时遇到问题,请帮助。这是我的代码
import java.util.ArrayList;
public class A
{
public static void main(String[] args)
{
ArrayList list=new ArrayList();
list.add(90);
list.add(9.9);
list.add("abc");
list.add(true);
System.out.println(list);
}
}
即将出现的错误是:
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
The method add(int, Object) in the type ArrayList is not applicable for the arguments (int)
The method add(Object) in the type ArrayList is not applicable for the arguments (double)
The method add(Object) in the type ArrayList is not applicable for the arguments (boolean)
at A.main(A.java:7)
但奇怪的是,这条线
list.add("abc");
没有引起任何错误..列表的添加方法采用一个对象类型的参数然后为什么我遇到这个问题请帮助大家..我搜索了很多我没有得到任何解决方案。我必须对此进行练习由于这个错误,我无法继续我的练习..