0

北ボタンをクリックした後、プレーヤーのスタミナを表す double 値を jTextArea に追加しようとしていますが、それを行うようには見えません。コードは次のとおりです。

private void northButtonActionPerformed(java.awt.event.ActionEvent evt) 
{                                            
    game.playerMove(MoveDirection.NORTH);
    update();
    double playerStamina = player.getStaminaLevel();

    //tried this
    String staminaLevel = Double.toString(playerStamina);
    jTextArea1.setText("Stamina: " + staminaLevel);
}                

私はここに新しいですこれが正しくない場合は申し訳ありません

主な方法はこちら

public class Main 
{
/**
 * Main method of Lemur Island.
 * 
 * @param args the command line arguments
 */
public static void main(String[] args) 
{
    // create the game object
    final Game game = new Game();
    // create the GUI for the game
    final LemurIslandUI  gui  = new LemurIslandUI(game);
    // make the GUI visible
    java.awt.EventQueue.invokeLater(new Runnable() 
    {
        @Override
        public void run() 
        {
            gui.setVisible(true);
        }
    });
}

クラスはこちら

public class LemurIslandUI extends javax.swing.JFrame
{
private Game game;
private Player player;
/** 
 * Creates a new JFrame for Lemur Island.
 * 
 * @param game the game object to display in this frame
 */
public LemurIslandUI(final Game game) 
{
    this.game = game;     
    initComponents();
    createGridSquarePanels();
    update();      
}

private void createGridSquarePanels() {

    int rows = game.getIsland().getNumRows();
    int columns = game.getIsland().getNumColumns();
    LemurIsland.removeAll();
    LemurIsland.setLayout(new GridLayout(rows, columns));

    for (int row = 0; row < rows; row++)
    {
        for (int col = 0; col < columns; col++)
        {
            GridSquarePanel panel = new GridSquarePanel(game, row, col);
            LemurIsland.add(panel);
        }
    }  
}

/**
 * Updates the state of the UI based on the state of the game.
 */
private void update()
{ 
    for(Component component : LemurIsland.getComponents()) 
    {
        GridSquarePanel gsp = (GridSquarePanel) component;
        gsp.update();
}
    game.drawIsland();

}
4

2 に答える 2

1

あなたのクラスは実装されていないようですActionListener。したがって、ボタンのアクションはトリガーされません。

クラス宣言は次のようにする必要があります。

public class LemurIslandUI extends javax.swing.JFrame implements ActionListener 

ボタン アクションのコードを内部に配置します。

public void actionPerformed(ActionEvent e) {}

anonymous classまたは、クラスに を実装させる代わりに、 を使用してボタンのコードを実装することもできますActionListener。何かのようなもの:

final JButton button = new JButton();

    button.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent actionevent)
        {
            //code
        }
    });
于 2013-10-23T12:55:46.713 に答える
0

これを試して。

jTextArea1.setText("Stamina: " + player.getStaminaLevel());

何か+文字列を使用すると、文字列に自動キャストされます。

于 2013-10-23T12:45:30.863 に答える