import java.util.ArrayList;
public class Tester {
public static void main(String[] args ) {
ArrayList<Comparable> Aria = new ArrayList<Comparable>();
Aria.add(new Integer(1));
}
}
やあみんな。これが私のクラス全体のテスターです。Comparable ArrayList に整数を入力したかったのです。ただし、次のようなエラーが表示されます。method ArrayList.add(int, Comparable) is not applicable (actual and formal arguments differ in lengths of list) method ArrayList.add(Comparable) is not applicable (actual argument Integer cannot be converted to Comparable by method invocation conversion).
私の友人が自分の PC でこれを試したところ、エラーなく動作しました。助けてくれてありがとう!