我正在为我的一个项目编写代码,它需要我编写一个数组。我如何实现评论5a?我得到了评论5吗?
// 4. declare an array of players
Player [] team = new Player[];
// 5. loop over teamsize
for( int index = 0; index < team.length; index++)
// 5a. instantiate the i'th team member
答案 0 :(得分:2)
是的,你确实得到了5分,但我会建议:
int length = team.length // to avoid unnecessarily calling it every iteration
for (int index = 0 ; index < length ; index++) {
// ...
}
对于5a,只需实例化一个Player
类。如果您不知道如何操作,请阅读Java tutorials。他们非常有帮助。
对于5a来说,另一件事是指示i'th
团队成员,这只是nth
(因为i
是索引的公共变量名称是你已经在使用的)