私は 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");
はエラーを引き起こしていません..リストのADDメソッドは、オブジェクトタイプである1つの引数を取ります.なぜ私はこの問題に直面しているのか助けてください..私はたくさん検索しましたが、解決策が得られませんでした.私はこれについて練習する必要があります.このエラーのために、私は練習を続けることができません..