好的,所以我有一个非常简单的计算机课作业(它应该显示遍历数组和东西)。我必须创建一个带有数组的版本和一个带有arrayLists的版本,所以在测试器类中我有一些静态方法,但是当我使用arrayList并尝试从对象所在的类中调用一个方法(它是一个getter方法) 我得到的只是一条错误消息,指出无法找到它。
这是我的代码的缩短版本:
导入 java.util.*;导入 java.util.List;
公共类 testCandidate2 {
public static int getTotal(ArrayList election)
{
int total = 0;
for(int b = 0; b <election.size(); b++)
total += election.getNumVotes();
return total;
}
public static void main(String[] args)
{
int totalVotes;
List <Candidate> election = new ArrayList<Candidate>(5);
election.add() = new Candidate(5000, "John Smith");
totalVotes = getTotal(election);
}
}
公共类候选人{
private String name;
private int numVotes;
Candidate(int nv, String n)
{
name = n;
numVotes = nv;
}
public String getName()
{
return name;
}
public int getNumVotes()
{
return numVotes;
}
public String toString()
{
return name + " recieved " + numVotes + " votes.";
}
}