How to describe a state with three items











up vote
6
down vote

favorite












I am creating the board game Tic Tac Toe in Java.



A cell will have three states: empty, X or O.



What is the best practice for representing this in Java? Should I create its own Cell class or just use integers (0/1/2) to represent the three states? If it had two states then I could use for example boolean to represent the two states, is there a similar already defined class for something with three states?










share|improve this question
























  • Note that what you're calling a cell is really just the possible content values of a cell. A cell is a location on the board, for TTT you have 9 cells. Naming matters, especially for code readability purposes.
    – Flater
    Nov 27 at 13:14






  • 1




    Bool of course ;-)
    – Emil Vikström
    Nov 27 at 13:23















up vote
6
down vote

favorite












I am creating the board game Tic Tac Toe in Java.



A cell will have three states: empty, X or O.



What is the best practice for representing this in Java? Should I create its own Cell class or just use integers (0/1/2) to represent the three states? If it had two states then I could use for example boolean to represent the two states, is there a similar already defined class for something with three states?










share|improve this question
























  • Note that what you're calling a cell is really just the possible content values of a cell. A cell is a location on the board, for TTT you have 9 cells. Naming matters, especially for code readability purposes.
    – Flater
    Nov 27 at 13:14






  • 1




    Bool of course ;-)
    – Emil Vikström
    Nov 27 at 13:23













up vote
6
down vote

favorite









up vote
6
down vote

favorite











I am creating the board game Tic Tac Toe in Java.



A cell will have three states: empty, X or O.



What is the best practice for representing this in Java? Should I create its own Cell class or just use integers (0/1/2) to represent the three states? If it had two states then I could use for example boolean to represent the two states, is there a similar already defined class for something with three states?










share|improve this question















I am creating the board game Tic Tac Toe in Java.



A cell will have three states: empty, X or O.



What is the best practice for representing this in Java? Should I create its own Cell class or just use integers (0/1/2) to represent the three states? If it had two states then I could use for example boolean to represent the two states, is there a similar already defined class for something with three states?







java






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 27 at 12:56









yoozer8

5,70443872




5,70443872










asked Nov 27 at 11:31









Alex

406722




406722












  • Note that what you're calling a cell is really just the possible content values of a cell. A cell is a location on the board, for TTT you have 9 cells. Naming matters, especially for code readability purposes.
    – Flater
    Nov 27 at 13:14






  • 1




    Bool of course ;-)
    – Emil Vikström
    Nov 27 at 13:23


















  • Note that what you're calling a cell is really just the possible content values of a cell. A cell is a location on the board, for TTT you have 9 cells. Naming matters, especially for code readability purposes.
    – Flater
    Nov 27 at 13:14






  • 1




    Bool of course ;-)
    – Emil Vikström
    Nov 27 at 13:23
















Note that what you're calling a cell is really just the possible content values of a cell. A cell is a location on the board, for TTT you have 9 cells. Naming matters, especially for code readability purposes.
– Flater
Nov 27 at 13:14




Note that what you're calling a cell is really just the possible content values of a cell. A cell is a location on the board, for TTT you have 9 cells. Naming matters, especially for code readability purposes.
– Flater
Nov 27 at 13:14




1




1




Bool of course ;-)
– Emil Vikström
Nov 27 at 13:23




Bool of course ;-)
– Emil Vikström
Nov 27 at 13:23












6 Answers
6






active

oldest

votes

















up vote
10
down vote













I would use an enum for this:



enum CellState {
EMPTY,
X,
O
}


And then in your code:



public static void main(String args) {
CellState cellStates = new CellState[3][3];
cellStates[0][0] = CellState.X;

// Do other stuff

}


I just defined the board structure as CellState as example but this can be whatever.






share|improve this answer




























    up vote
    3
    down vote













    About the most important thing when using an OO language is that objects model behaviour and, where possible, contain the data required to implement the behaviour. Behaviour is what the objects do, not what is done to them.



    So unless there is a reason to in a requirement you haven't stated, the cell itself doesn't have any behaviour, it is just a place that the players mark.



    So you could have a simple array of marks that both players update, with an enum with three values, or you could have each player update their own data of the marks they have made, in which case each player would have either a boolean array or a short bit mask to indicate their goes. In the latter case, each player then only changes the state of their own 'goes' and can implement the test for their winning condition rather than having shared state - the only sharing is they have to ask the other player whether the chosen cell is valid. It depends how strictly OO you want your design to be as to whether this is 'best practice' or not - for such a simple problem you could write in COBOL and the users would be as happy.






    share|improve this answer























    • As you said, in a properly-designed class, how the class stores the state of each cell should not matter, and should not be visible to, anything outside the class.
      – Jeff Dege
      Nov 27 at 13:39


















    up vote
    2
    down vote













    I would use an enum :



    public enum CellState {
    EMPTY,
    X,
    O;
    }


    And a Cell class that has a field of type CellState






    share|improve this answer




























      up vote
      2
      down vote













      You could use an enum which contains the three values, like:



      public enum CellState {
      EMPTY,
      X,
      O
      }


      And use it like in a way like this:



      board.setCell(cellposition, CellState.X);





      share|improve this answer




























        up vote
        2
        down vote













        There are multiple approaches but in this case I prefer using an enum to represent your state.



        public enum State {
        EMPTY,
        X,
        O
        }


        And then your cell class would look something like this.



        public class Cell {
        private State state;

        public Cell(State state) {
        this.state = state;
        }

        public State getState {
        return state;
        }

        public void setState(State state) {
        this.state = state;
        }

        }





        share|improve this answer




























          up vote
          -8
          down vote













          The other way is just to use Boolean object and to use null as third state.



          Boolean state = null; // => empty state
          state = Boolean.TRUE // => X state
          state = Boolean.FALSE // => O state





          share|improve this answer



















          • 2




            Using nulls for anything other than faliure cases is a bad idea.
            – Tejas Kale
            Nov 27 at 13:30










          • Also Boolean state; is wrong, its not "empty" but rather uninitialized
            – Lino
            Nov 27 at 17:20










          • It depends on the context like everything in the programming world. If he wants something quick, without having to add additional classes, enums, etc., which will bring additional logic to handle them and tests, he can just use this approach for his game.
            – Tony
            Nov 28 at 16:53











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53498708%2fhow-to-describe-a-state-with-three-items%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          6 Answers
          6






          active

          oldest

          votes








          6 Answers
          6






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          10
          down vote













          I would use an enum for this:



          enum CellState {
          EMPTY,
          X,
          O
          }


          And then in your code:



          public static void main(String args) {
          CellState cellStates = new CellState[3][3];
          cellStates[0][0] = CellState.X;

          // Do other stuff

          }


          I just defined the board structure as CellState as example but this can be whatever.






          share|improve this answer

























            up vote
            10
            down vote













            I would use an enum for this:



            enum CellState {
            EMPTY,
            X,
            O
            }


            And then in your code:



            public static void main(String args) {
            CellState cellStates = new CellState[3][3];
            cellStates[0][0] = CellState.X;

            // Do other stuff

            }


            I just defined the board structure as CellState as example but this can be whatever.






            share|improve this answer























              up vote
              10
              down vote










              up vote
              10
              down vote









              I would use an enum for this:



              enum CellState {
              EMPTY,
              X,
              O
              }


              And then in your code:



              public static void main(String args) {
              CellState cellStates = new CellState[3][3];
              cellStates[0][0] = CellState.X;

              // Do other stuff

              }


              I just defined the board structure as CellState as example but this can be whatever.






              share|improve this answer












              I would use an enum for this:



              enum CellState {
              EMPTY,
              X,
              O
              }


              And then in your code:



              public static void main(String args) {
              CellState cellStates = new CellState[3][3];
              cellStates[0][0] = CellState.X;

              // Do other stuff

              }


              I just defined the board structure as CellState as example but this can be whatever.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Nov 27 at 11:35









              Mark

              2,8341822




              2,8341822
























                  up vote
                  3
                  down vote













                  About the most important thing when using an OO language is that objects model behaviour and, where possible, contain the data required to implement the behaviour. Behaviour is what the objects do, not what is done to them.



                  So unless there is a reason to in a requirement you haven't stated, the cell itself doesn't have any behaviour, it is just a place that the players mark.



                  So you could have a simple array of marks that both players update, with an enum with three values, or you could have each player update their own data of the marks they have made, in which case each player would have either a boolean array or a short bit mask to indicate their goes. In the latter case, each player then only changes the state of their own 'goes' and can implement the test for their winning condition rather than having shared state - the only sharing is they have to ask the other player whether the chosen cell is valid. It depends how strictly OO you want your design to be as to whether this is 'best practice' or not - for such a simple problem you could write in COBOL and the users would be as happy.






                  share|improve this answer























                  • As you said, in a properly-designed class, how the class stores the state of each cell should not matter, and should not be visible to, anything outside the class.
                    – Jeff Dege
                    Nov 27 at 13:39















                  up vote
                  3
                  down vote













                  About the most important thing when using an OO language is that objects model behaviour and, where possible, contain the data required to implement the behaviour. Behaviour is what the objects do, not what is done to them.



                  So unless there is a reason to in a requirement you haven't stated, the cell itself doesn't have any behaviour, it is just a place that the players mark.



                  So you could have a simple array of marks that both players update, with an enum with three values, or you could have each player update their own data of the marks they have made, in which case each player would have either a boolean array or a short bit mask to indicate their goes. In the latter case, each player then only changes the state of their own 'goes' and can implement the test for their winning condition rather than having shared state - the only sharing is they have to ask the other player whether the chosen cell is valid. It depends how strictly OO you want your design to be as to whether this is 'best practice' or not - for such a simple problem you could write in COBOL and the users would be as happy.






                  share|improve this answer























                  • As you said, in a properly-designed class, how the class stores the state of each cell should not matter, and should not be visible to, anything outside the class.
                    – Jeff Dege
                    Nov 27 at 13:39













                  up vote
                  3
                  down vote










                  up vote
                  3
                  down vote









                  About the most important thing when using an OO language is that objects model behaviour and, where possible, contain the data required to implement the behaviour. Behaviour is what the objects do, not what is done to them.



                  So unless there is a reason to in a requirement you haven't stated, the cell itself doesn't have any behaviour, it is just a place that the players mark.



                  So you could have a simple array of marks that both players update, with an enum with three values, or you could have each player update their own data of the marks they have made, in which case each player would have either a boolean array or a short bit mask to indicate their goes. In the latter case, each player then only changes the state of their own 'goes' and can implement the test for their winning condition rather than having shared state - the only sharing is they have to ask the other player whether the chosen cell is valid. It depends how strictly OO you want your design to be as to whether this is 'best practice' or not - for such a simple problem you could write in COBOL and the users would be as happy.






                  share|improve this answer














                  About the most important thing when using an OO language is that objects model behaviour and, where possible, contain the data required to implement the behaviour. Behaviour is what the objects do, not what is done to them.



                  So unless there is a reason to in a requirement you haven't stated, the cell itself doesn't have any behaviour, it is just a place that the players mark.



                  So you could have a simple array of marks that both players update, with an enum with three values, or you could have each player update their own data of the marks they have made, in which case each player would have either a boolean array or a short bit mask to indicate their goes. In the latter case, each player then only changes the state of their own 'goes' and can implement the test for their winning condition rather than having shared state - the only sharing is they have to ask the other player whether the chosen cell is valid. It depends how strictly OO you want your design to be as to whether this is 'best practice' or not - for such a simple problem you could write in COBOL and the users would be as happy.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Nov 27 at 17:19









                  Lino

                  6,98221936




                  6,98221936










                  answered Nov 27 at 13:32









                  Pete Kirkham

                  43k378151




                  43k378151












                  • As you said, in a properly-designed class, how the class stores the state of each cell should not matter, and should not be visible to, anything outside the class.
                    – Jeff Dege
                    Nov 27 at 13:39


















                  • As you said, in a properly-designed class, how the class stores the state of each cell should not matter, and should not be visible to, anything outside the class.
                    – Jeff Dege
                    Nov 27 at 13:39
















                  As you said, in a properly-designed class, how the class stores the state of each cell should not matter, and should not be visible to, anything outside the class.
                  – Jeff Dege
                  Nov 27 at 13:39




                  As you said, in a properly-designed class, how the class stores the state of each cell should not matter, and should not be visible to, anything outside the class.
                  – Jeff Dege
                  Nov 27 at 13:39










                  up vote
                  2
                  down vote













                  I would use an enum :



                  public enum CellState {
                  EMPTY,
                  X,
                  O;
                  }


                  And a Cell class that has a field of type CellState






                  share|improve this answer

























                    up vote
                    2
                    down vote













                    I would use an enum :



                    public enum CellState {
                    EMPTY,
                    X,
                    O;
                    }


                    And a Cell class that has a field of type CellState






                    share|improve this answer























                      up vote
                      2
                      down vote










                      up vote
                      2
                      down vote









                      I would use an enum :



                      public enum CellState {
                      EMPTY,
                      X,
                      O;
                      }


                      And a Cell class that has a field of type CellState






                      share|improve this answer












                      I would use an enum :



                      public enum CellState {
                      EMPTY,
                      X,
                      O;
                      }


                      And a Cell class that has a field of type CellState







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Nov 27 at 11:34









                      TheWildHealer

                      403215




                      403215






















                          up vote
                          2
                          down vote













                          You could use an enum which contains the three values, like:



                          public enum CellState {
                          EMPTY,
                          X,
                          O
                          }


                          And use it like in a way like this:



                          board.setCell(cellposition, CellState.X);





                          share|improve this answer

























                            up vote
                            2
                            down vote













                            You could use an enum which contains the three values, like:



                            public enum CellState {
                            EMPTY,
                            X,
                            O
                            }


                            And use it like in a way like this:



                            board.setCell(cellposition, CellState.X);





                            share|improve this answer























                              up vote
                              2
                              down vote










                              up vote
                              2
                              down vote









                              You could use an enum which contains the three values, like:



                              public enum CellState {
                              EMPTY,
                              X,
                              O
                              }


                              And use it like in a way like this:



                              board.setCell(cellposition, CellState.X);





                              share|improve this answer












                              You could use an enum which contains the three values, like:



                              public enum CellState {
                              EMPTY,
                              X,
                              O
                              }


                              And use it like in a way like this:



                              board.setCell(cellposition, CellState.X);






                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Nov 27 at 11:35









                              Sven Hakvoort

                              1,675519




                              1,675519






















                                  up vote
                                  2
                                  down vote













                                  There are multiple approaches but in this case I prefer using an enum to represent your state.



                                  public enum State {
                                  EMPTY,
                                  X,
                                  O
                                  }


                                  And then your cell class would look something like this.



                                  public class Cell {
                                  private State state;

                                  public Cell(State state) {
                                  this.state = state;
                                  }

                                  public State getState {
                                  return state;
                                  }

                                  public void setState(State state) {
                                  this.state = state;
                                  }

                                  }





                                  share|improve this answer

























                                    up vote
                                    2
                                    down vote













                                    There are multiple approaches but in this case I prefer using an enum to represent your state.



                                    public enum State {
                                    EMPTY,
                                    X,
                                    O
                                    }


                                    And then your cell class would look something like this.



                                    public class Cell {
                                    private State state;

                                    public Cell(State state) {
                                    this.state = state;
                                    }

                                    public State getState {
                                    return state;
                                    }

                                    public void setState(State state) {
                                    this.state = state;
                                    }

                                    }





                                    share|improve this answer























                                      up vote
                                      2
                                      down vote










                                      up vote
                                      2
                                      down vote









                                      There are multiple approaches but in this case I prefer using an enum to represent your state.



                                      public enum State {
                                      EMPTY,
                                      X,
                                      O
                                      }


                                      And then your cell class would look something like this.



                                      public class Cell {
                                      private State state;

                                      public Cell(State state) {
                                      this.state = state;
                                      }

                                      public State getState {
                                      return state;
                                      }

                                      public void setState(State state) {
                                      this.state = state;
                                      }

                                      }





                                      share|improve this answer












                                      There are multiple approaches but in this case I prefer using an enum to represent your state.



                                      public enum State {
                                      EMPTY,
                                      X,
                                      O
                                      }


                                      And then your cell class would look something like this.



                                      public class Cell {
                                      private State state;

                                      public Cell(State state) {
                                      this.state = state;
                                      }

                                      public State getState {
                                      return state;
                                      }

                                      public void setState(State state) {
                                      this.state = state;
                                      }

                                      }






                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Nov 27 at 11:38









                                      David Baak

                                      7271918




                                      7271918






















                                          up vote
                                          -8
                                          down vote













                                          The other way is just to use Boolean object and to use null as third state.



                                          Boolean state = null; // => empty state
                                          state = Boolean.TRUE // => X state
                                          state = Boolean.FALSE // => O state





                                          share|improve this answer



















                                          • 2




                                            Using nulls for anything other than faliure cases is a bad idea.
                                            – Tejas Kale
                                            Nov 27 at 13:30










                                          • Also Boolean state; is wrong, its not "empty" but rather uninitialized
                                            – Lino
                                            Nov 27 at 17:20










                                          • It depends on the context like everything in the programming world. If he wants something quick, without having to add additional classes, enums, etc., which will bring additional logic to handle them and tests, he can just use this approach for his game.
                                            – Tony
                                            Nov 28 at 16:53















                                          up vote
                                          -8
                                          down vote













                                          The other way is just to use Boolean object and to use null as third state.



                                          Boolean state = null; // => empty state
                                          state = Boolean.TRUE // => X state
                                          state = Boolean.FALSE // => O state





                                          share|improve this answer



















                                          • 2




                                            Using nulls for anything other than faliure cases is a bad idea.
                                            – Tejas Kale
                                            Nov 27 at 13:30










                                          • Also Boolean state; is wrong, its not "empty" but rather uninitialized
                                            – Lino
                                            Nov 27 at 17:20










                                          • It depends on the context like everything in the programming world. If he wants something quick, without having to add additional classes, enums, etc., which will bring additional logic to handle them and tests, he can just use this approach for his game.
                                            – Tony
                                            Nov 28 at 16:53













                                          up vote
                                          -8
                                          down vote










                                          up vote
                                          -8
                                          down vote









                                          The other way is just to use Boolean object and to use null as third state.



                                          Boolean state = null; // => empty state
                                          state = Boolean.TRUE // => X state
                                          state = Boolean.FALSE // => O state





                                          share|improve this answer














                                          The other way is just to use Boolean object and to use null as third state.



                                          Boolean state = null; // => empty state
                                          state = Boolean.TRUE // => X state
                                          state = Boolean.FALSE // => O state






                                          share|improve this answer














                                          share|improve this answer



                                          share|improve this answer








                                          edited Nov 28 at 16:43

























                                          answered Nov 27 at 11:48









                                          Tony

                                          3718




                                          3718








                                          • 2




                                            Using nulls for anything other than faliure cases is a bad idea.
                                            – Tejas Kale
                                            Nov 27 at 13:30










                                          • Also Boolean state; is wrong, its not "empty" but rather uninitialized
                                            – Lino
                                            Nov 27 at 17:20










                                          • It depends on the context like everything in the programming world. If he wants something quick, without having to add additional classes, enums, etc., which will bring additional logic to handle them and tests, he can just use this approach for his game.
                                            – Tony
                                            Nov 28 at 16:53














                                          • 2




                                            Using nulls for anything other than faliure cases is a bad idea.
                                            – Tejas Kale
                                            Nov 27 at 13:30










                                          • Also Boolean state; is wrong, its not "empty" but rather uninitialized
                                            – Lino
                                            Nov 27 at 17:20










                                          • It depends on the context like everything in the programming world. If he wants something quick, without having to add additional classes, enums, etc., which will bring additional logic to handle them and tests, he can just use this approach for his game.
                                            – Tony
                                            Nov 28 at 16:53








                                          2




                                          2




                                          Using nulls for anything other than faliure cases is a bad idea.
                                          – Tejas Kale
                                          Nov 27 at 13:30




                                          Using nulls for anything other than faliure cases is a bad idea.
                                          – Tejas Kale
                                          Nov 27 at 13:30












                                          Also Boolean state; is wrong, its not "empty" but rather uninitialized
                                          – Lino
                                          Nov 27 at 17:20




                                          Also Boolean state; is wrong, its not "empty" but rather uninitialized
                                          – Lino
                                          Nov 27 at 17:20












                                          It depends on the context like everything in the programming world. If he wants something quick, without having to add additional classes, enums, etc., which will bring additional logic to handle them and tests, he can just use this approach for his game.
                                          – Tony
                                          Nov 28 at 16:53




                                          It depends on the context like everything in the programming world. If he wants something quick, without having to add additional classes, enums, etc., which will bring additional logic to handle them and tests, he can just use this approach for his game.
                                          – Tony
                                          Nov 28 at 16:53


















                                          draft saved

                                          draft discarded




















































                                          Thanks for contributing an answer to Stack Overflow!


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid



                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.


                                          To learn more, see our tips on writing great answers.





                                          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                                          Please pay close attention to the following guidance:


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid



                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.


                                          To learn more, see our tips on writing great answers.




                                          draft saved


                                          draft discarded














                                          StackExchange.ready(
                                          function () {
                                          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53498708%2fhow-to-describe-a-state-with-three-items%23new-answer', 'question_page');
                                          }
                                          );

                                          Post as a guest















                                          Required, but never shown





















































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown

































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown







                                          Popular posts from this blog

                                          If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                                          Alcedinidae

                                          Can an atomic nucleus contain both particles and antiparticles? [duplicate]