一部のコードをメイン メソッドから移動して、別のクラスで使用しようとしています。これを行う理由は、そうすることをお勧めする規則があることを知ったからです。私はJavaに比較的慣れていないので、試してみたいと思っています。現在、コードを「Game」クラスに移動すると、Eclipse が表示しているエラーを解決できません。
どんな助けでも大歓迎です。
playGameクラスのメインメソッド-
public class playGame {
public static void main(String[] args) {
// TODO Auto-generated method stub
player playerOne = new player();
GameHelper gameHelper = new GameHelper();
wordManipulator thisWord = new wordManipulator();
gameHelper.showDisplay();
playerOne.setPlayerName();
gameHelper.showIntro(playerOne.getPlayerName());
thisWord.showHiddenWord();
playerOne.setPlayerGuess();
}
}
ゲームクラス
public class Game {
//other code for the game logic
}