如何将 class 实例放在边框布局的北边?

How do I put a class instance at north of border layout?

我写了一个简单的定时器class,我想将框架布局设置为边框布局,并将定时器放在北方。我是布局新手,谁能帮我解决这个问题?

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

public class TimerTest extends JFrame{
    JButton timerLabel = null;
    public TimerTest()
    {
        this.setTitle("Timer Test");
        Container c = this.getContentPane();
        c.setLayout(new FlowLayout());
        timerLabel = new JButton("0");
        timerLabel.setEnabled(false);
        c.add(timerLabel);
        this.setSize(150,150);
        this.setVisible(true);
        int k = 100;
        while(true)
        {

            timerLabel.setText(k+" seconds left");
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            k--;
        }
    }

    public static void main(String[] args) {
        new TimerTest();
    }
}
Container c = this.getContentPane(); // has border layout by DEFAULT
c.setLayout(new FlowLayout()); // but now it has flow layout!
// ..
c.add(timerLabel);

因此将其更改为:

Container c = this.getContentPane(); // has border layout by DEFAULT
// ..
c.add(timerLabel, BorderLayout.PAGE_START); // PAGE_START is AKA 'NORTH'

其他提示:

  1. 不要扩展 JFrame,只使用一个的实例。
  2. JButton timerLabel是个容易混淆的名字,应该是JButton timerButton
  3. this.setTitle("Timer Test"); 可以写成 super("Timer Test"); 或者如果使用标准(未扩展)框架 .. JFrame frame = new JFrame("Timer Test");
  4. this.setSize(150,150); 这个尺寸只是一个猜测。最好是this.pack();
  5. while(true) .. Thread.sleep(1000); 不要阻塞 EDT(事件调度线程)。当发生这种情况时,GUI 将 'freeze'。有关详细信息和修复,请参阅 Concurrency in Swing
  6. public static void main(String[] args) { new TimerTest(); } 应在 EDT 上创建和更新基于 Swing 和 AWT 的 GUI。