由另一个类创建标签

时间:2013-09-30 17:27:09

标签: java swing jframe jlabel

当我调用一个函数时,我正在尝试创建一个标签。但我不能这样做..怎么做?我想通过funcoes.test()方法(在第一个代码下面)创建一个标签,以便在JFrame(第一个类,名为Interface)中显示

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    // TODO add your handling code here:,
    System.out.print("test");
    for(int i = 1; i < 5; i++) {
        System.out.print("hi");
        this.button = new JButton();
        this.button.setSize(60, 50);
        this.button.setLocation(50+(80*i), 100);
        this.button.setVisible(true);
        this.button.setText("" + i);
        this.button.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent ae) {
                int op = Integer.parseInt(ae.getActionCommand());
                funcoes.test(op);

            }  
        });
        this.add(button);
        this.jPanel1.add(button);
        this.revalidate();
        this.repaint();


    }
}

这是我的另一堂课:

public class funcoes extends Interface {
    public static void test(int x) {
        System.out.print("Hi: " + x);
        JLabel numero = new JLabel();
        JLabel total = new JLabel();
        //Interface.        
}

1 个答案:

答案 0 :(得分:0)

假设Interface类是JFrame的子类(我认为这就是在JFrame中显示的意思(第一类,名为Interface)),只需调用add方法:

JLabel numero = new JLabel();
JLabel total = new JLabel();
add(numero);
add(total);

要拥有漂亮的布局,您可以使用其中一个LayoutManager