0

好的,所以我有一个非常简单的计算机课作业(它应该显示遍历数组和东西)。我必须创建一个带有数组的版本和一个带有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.";
}

}

4

1 回答 1

0

试试这个 :

import java.util.*;
//import java.util.List;

public class testCandidate2 {

public static int getTotal(ArrayList election)
{
    int total = 0;
    for(int b = 0; b <election.size(); b++)
         {
         Candidate ele = (Candidate) election.get(b);
       //  System.out.println(ele.getNumVotes());
         total += ele.getNumVotes();
         //System.out.println(o.getNumVotes());
    }
         //System.out.println( (Candidate) (election.get(b).getNumVotes());
          //.getNumVotes();
    return total;
}


public static void main(String[] args)
{
    int totalVotes;
    ArrayList <Candidate> election = new ArrayList<Candidate>(5);
    election.add(new Candidate(5000, "John Smith"));

    totalVotes = getTotal(election);
    System.out.println(totalVotes);
}
}
于 2013-03-29T04:37:38.360 回答