我正在尝试将一些代码移出 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
}