0

我正在尝试将一些代码移出 main 方法并在另一个类中使用它。这样做的原因是我了解到这样做是建议的惯例,而且我对 Java 相对较新,因此希望尝试一下。目前,当我将代码移动到“游戏”类中时,我无法解决 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

}
4

1 回答 1

0

确保将您的代码放在 Game 类的方法中,然后调用该特定方法。

另一个提示:使用大写的类名。

于 2013-06-18T14:03:29.133 回答