1

皆さん、こんにちは。私はEclipseを使用しており、プログラムはコンパイルおよび実行中です。3 つのクラスがあり、それらは同じパッケージに入っています。そのため、クラス ThreadQuizCountdown の i の値を他のクラス PanelQuizCountdown int に timeField という名前の JTextField に渡したいのですが、現在 i がコンソールに表示されています。ここにコードがあります

/**The driver class of the program. Here is the JFrame 
 * class name RunQuizCountdown.java
 * @author Kiril Anastasov
 * @date 09/03/2012
 */

import java.awt.*;
import javax.swing.*;

public class RunQuizCountdown 
{
    public static void main(String[] args) 
    {

        JFrame application = new JFrame();
        PanelQuizCountdown panel = new PanelQuizCountdown();
        application.add(panel);
        application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        application.setSize(200,300);
        application.setLocationByPlatform(true);
        application.setVisible(true);
    }

}



/** Here is the GUI of the program
 * class name PanelQuizCountdown.java
 * @author Kiril Anastasov
 * @date 09/03/2012
 */

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;   

public class PanelQuizCountdown extends JPanel implements ActionListener
{
    JTextField timeField, answerField;
    JLabel messageLabel, correctLabel, totalLabel;
    int x, y;
    int correct;
    int total;

    ThreadQuizCountdown myQuiz;

    PanelQuizCountdown()
    {
        timeField = new JTextField(5);
        myQuiz = new ThreadQuizCountdown(timeField);
        this.add(timeField);
        myQuiz.begin();


        messageLabel = new JLabel("What is the result of " + x + " * " + y);
        this.add(messageLabel);

        answerField = new JTextField(5);
        this.add(answerField);

        correctLabel = new JLabel("You gave : " + correct +  " correct answers");
        this.add(correctLabel);

        totalLabel = new JLabel("You answered: " + total + " questions");
        this.add(totalLabel);





    }


    public void actionPerformed(ActionEvent ae)
    {

    }
}

/** Here is the thread of the program
 * class name ThreadQuizCountdown.java
 * @author Kiril Anastasov
 * @date 09/03/2012
 */

import javax.swing.JTextField;

public class ThreadQuizCountdown implements Runnable
{
    JTextField  timeField;
    Thread myThread = new Thread(this);

    int i = 30;
    boolean go = true;

    ThreadQuizCountdown(JTextField theTimeField)
    {
        timeField = theTimeField;
    }

    public void run()
    {


        while(go)
        {           
            System.out.println(i);      

            try 
            { 
                myThread.sleep(1000);          
            } 
            catch (InterruptedException ie) 
            {
                 System.out.println("thread exception");
            }

            timeField = new JTextField(26);

            if(i == 0 )
            {
                go = false;
            }
            i--;
        }

    }

    public void begin()
    {
        myThread.start();
    }

    public void finish()
    {
        myThread.stop();
    }
}
4

2 に答える 2

2

代わりにラベルを使用するオプションがある間は、テキストフィールドにカウントダウンを表示することはお勧めできません。とにかく、私はあなたのコードをデバッグしました、そして以下のステップを適用した後、それはあなたが望むように実行されます。

ThreadQuizCountdownクラスでは、メソッドのwhileループに、run()この行を追加します

timeField.setText( i +"" );

これは、時間値をテキストフィールドに設定します。これは、最初の明らかな欠落です。try-catchブロックの前にこの行を追加できます。

次に、この行を削除しtimeField = new JTextField(26);ます。同じwhileループから、毎回テキストフィールドを新しいオブジェクトに割り当てるのはばかげています。

これらを適用すると、作業が完了します。

于 2012-03-10T18:12:11.787 に答える
2

委任を使用し、インターフェースに準拠するデリゲート クラスの begin() メソッド パラメータに追加します。

interface DelegationInterface {
   void countdownTick(int i);
}

ThreadQuizCountdown で: プライベート フィールドを追加し、begin メソッドを変更します。

private DelegationInterface delegate;

public void begin(DelegationInterface delegate) {
   this.delegate = delegate;
   myThread.start();
}

次に、run() を変更します。

public void run() {
....
  myThread.sleep(1000); 
  if (delegate != null) {
      synchronized(delegate) {
          delegate.countdownTick(i);
      }
  }
....
}

最後に、パネルにインターフェースの実装を追加します。

public class PanelQuizCountdown extends JPanel implements ActionListener, DelegationInterface {
    ....
    public void countdownTick(int i) {
        // place i to to timeField
    }
    ....
}

それでおしまい!

于 2012-03-10T18:07:32.543 に答える