我正在使用ArrayList
包含多个变量的对象。例如:
// pseudo code
class Ticket {
int gameID
double price
int seatnumber
}
我有ArrayList
多个Ticket
对象,需要访问它们。我看过javadoc,到目前为止我想出了
list.get(index).attribute
但是我得到一个编译错误说:
找不到标志
我在语法上做错了吗?这是我的代码:
public static void printGameMoney(ArrayList games, ArrayList tickets)
{
double total = 0;
double tickMoney = 0;
for (int i=0; i<tickets.size(); i++)
{
double tickMoney = tickets.get(i).priceOfTick;
total = total + tickMoney;
}
}