设置一次后更改JTextfield

时间:2015-12-05 02:12:07

标签: java user-interface jtextfield gettext

我有一个正在创建游戏的程序,我需要它在两个转弯之间在JTextField中的名称之间切换。这就是我到目前为止所做的:

    JTextField curPlay;
    JTextField player1Name;
    JTextField player2Name;
     if (curPlay.getText().equals(player1Name.getText())) {
        curPlay.setText(player2Name.getText());
     }

0 个答案:

没有答案