我正试图将一些代码移出主方法并在另一个类中使用它。这样做的原因是我了解到这样做的建议惯例,我是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();
}
}
The Game class
public class Game {
//other code for the game logic
}
确保将代码放入Game类的方法中,然后调用该特定方法。