У меня есть класс Candidades, который содержит объекты-кандидаты, следующим образом:
import java.util.*;
public class Candidates<Candidate> extends ArrayList<Candidate> {
public int getTotalVotesCount()
{
Iterator it = this.iterator();
int i, total = 0;
while(it.hasNext())
{
Candidate c = (Candidate)it.next();
total += c.getVoteCount();
}
return total;
}
}
Кандидат в класс выглядит следующим образом:
public class Candidate {
private int votes;
private String name;
public String getName()
{
return this.name;
}
public int getVoteCount()
{
return this.votes;
}
public void vote()
{
votes++;
}
public Candidate(String _name)
{
this.name = _name;
this.votes = 0;
}
}
Как мне выполнить итерации по нему?
Я знаю, что код для итерации в порядке, так как использование кода вне класса работает.
Тест ниже:
/**
* @(#)Test.java
*
* Test application
*
* @author
* @version 1.00 2011/3/8
*/
import java.util.*;
public class Test {
public static void main(String[] args) {
Candidates candidates = new Candidates();
candidates.add(new Candidate("One"));
candidates.add(new Candidate("Two"));
candidates.add(new Candidate("Three"));
candidates.add(new Candidate("Four"));
Iterator it = candidates.iterator();
int i = 0;
while(it.hasNext())
{
i++;
Candidate c = (Candidate)it.next();
for(int j = 0; j <= i; j++)
{
c.vote();
}
}
int total = 0;
it = candidates.iterator();
while(it.hasNext())
{
Candidate c = (Candidate)it.next();
total += c.getVoteCount();
}
System.out.printf("Votes: %d", total);
}
}
Код, приведенный выше, правильно печатает 14.