Search:

Type: Posts; User: Norm

Search: Search took 0.14 seconds.

  1. Re: Difficulty with understanding interaction between Classes

    There is no class file for the Player class because of the compiler errors.

    getBoardLength() is a non-static method in the GameBoard class. You need to have a reference variable that points to an...
  2. Re: Difficulty with understanding interaction between Classes

    Variables defined inside of methods are local to that method and can't be declared private etc

    Java is case sensitive. Check your spelling.

    You need an import statement to access classes in a...
Results 1 to 2 of 2