Page 1 of 1

(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
by correctanswer
(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;
(ii) Write a zero argument
constructor for the class Team, which will initialize MAX_PLAYERS
to 11, create the players array with an appropriate capacity,
initialize numOfPlayers to 0 and set name to the empty
string.