I cannot pass a (String-)value to another class's setter method

98 Views Asked by At

I know that i have not written a catch block yet.(reason?, but i think it's actually not the problem; the attributes of the "Game" class are perfectly changeable)

I always get an IOException when i try to call the setName method in Player (even if I set "name" in Player to public and change it directly).

    public class game{



    protected static int amountPlayers;
    protected static Player[] playerList = new Player[amountPlayers];

public static void main (String[] args) throws IOException{
        //Scanner reader = new Scanner(System.in);
        InputStreamReader isr = new InputStreamReader(System.in);
        BufferedReader br = new BufferedReader(isr);
        String input;

        System.out.println("new round? (1 for yes; enter for no):");
        int boo = Integer.parseInt(br.readLine());

        if (boo == 1) {
          Rounds.setNew(true);
        } // end of if

        if (Rounds.getNew() == true) {
          //SavingManagement.createFile();                            
          System.out.println("# of players:");
          int amount = Integer.parseInt(br.readLine());
          setAmountPlayers(amount);
        } // end of if

        for (int i = 0; i < amountPlayers; i++) {
          System.out.println("Name player No. " + (i + 1) + ":");
          input = br.readLine();
          playerList[i].setName(input);      
        } // end of for
        }


    public class Player {


      protected static int score;     
      protected static String name = "";



      public static void setName(String input) {
        name = input;
      }
    }
3

There are 3 best solutions below

2
On BEST ANSWER

Assuming that you are providing the valid size in amountPlayers, by writing the following statement you are just creating the Player array and not initializing it.

protected static int amountPlayers = 100;

/* This will just create the array */
protected static Player[] playerList = new Player[amountPlayers];

Before you can use setName(), you'll have to initialize the array as follows:

for(int x = 0; x < amountPlayers; x++) {
    playerList[x] = new Player();
}

OR you can do something like this:

/* Create a new object of class Player */
Player myPlayer = new Player();

/* Set Name */ 
myPlayer.setName(input); 

/* Assign it to your array */
playerList[i] = myPlayer;
0
On

The PlayerList contains Player objects, so when you are calling the setName method like this: playerList[i].setName(input) it is through an instance of class Player, but the method is actually static and should be called in this way:

Player.setName() 

Although, the best thing you could do is add a constructor in class Player, add new Player objects in the array playerList and make the method setName() and the other variables in class Player non-static.

1
On

Do you need the Player class as a public inner class? Do you need to protoct the score and the Name?

Otherwise this should work:

public class game {

    protected static int amountPlayers;
    protected static Player[] playerList = new Player[amountPlayers];

    public static void main(String[] args) throws IOException {
        for (int i = 0; i < amountPlayers; i++) {
            playerList[i].setName("test");
        }
    }
}

class Player {
    private int score;
    private String name = "";

    public void setName(String input) {
        name = input;
    }
}