import java.util.ArrayList;
import java.util.Random;
public class College
{
// instance variables - replace the example below with your own
private ArrayList<Student> students;
public College()
{
// initialise instance variables
ArrayList<Student> students = new ArrayList<Student>();
students.add("Student 1");
students.add("Student 2");
students.add("Student 3");
}
}
基本上,它突出顯示錯誤消息「java.lang.IllegalArgumentException:綁定必須是正面的」.add,我不明白我在這裏做錯了什麼?我看了很多這類問題的線程在這裏,但我做了什麼,他們做了「在列表構造函數中找不到適用於add(java.lang.String)的方法?
將您的'學生類'添加到您的帖子 –