(g) A class called Team includes the following declarations: public class Team { private final int MAX_PLAYERS; priva
Posted: Fri Jun 10, 2022 11:56 am
(g) A class called
Team includes the following declarations:
public class Team
{
private final int
MAX_PLAYERS; private Player[]
players; private int numOfPlayers; //number of players
in the array private String name;
}
(i)
What is the nature of the
object-oriented relationship between classes Team and Player?
Explain your answer.
Team includes the following declarations:
public class Team
{
private final int
MAX_PLAYERS; private Player[]
players; private int numOfPlayers; //number of players
in the array private String name;
}
(i)
What is the nature of the
object-oriented relationship between classes Team and Player?
Explain your answer.