0

我的问题示例:

我有一个主文件:

public class APP extends JFrame
{
    private Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();

    public APP()
    {
        setLayout(new BorderLayout());
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        setJMenuBar(new MenuBar());

        JPanel content = new JPanel(new GridLayout(0, 8, 2, 2));
        add(new JScrollPane(content, 22, 32), BorderLayout.CENTER);      

        pack();
        setLocationByPlatform(true);
        setResizable(false);
        setVisible(true);
    }

    public Dimension getPreferredSize()
    {
        return new Dimension(screen.width / 10 * 7, screen.height / 10 * 6);
    }

    public static void main(String[] args)
    {
        SwingUtilities.invokeLater(new Runnable()
        {
            public void run()
            {
                APP program = new APP();
            }
        });
    } 
}

我有一个外部对象,我试图将其添加为 JMenuBar:

public class MenuBar extends JMenuBar
{
    public MenuBar()
    {
        JMenu file = new JMenu("File");
        file.setMnemonic(KeyEvent.VK_F);
        add(file);

        JMenuItem item;

        item = new JMenuItem("Add New");
        item.setMnemonic(KeyEvent.VK_N);
        item.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_N,
                ActionEvent.ALT_MASK));
        item.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent arg0) {
                //createThumb();
            }
        });
        file.add(item);
    }
}

但是,我的菜单栏根本没有出现。当我在主文件中创建一个 JMenuBar 函数时,例如... createMenuBar() 并在其中包含相同的确切代码,当我将它添加到框架时它会显示出来,但是当我将它作为外部对象时,它没有。

我究竟做错了什么?

编辑:修复了错误。参考上面的代码。

4

1 回答 1

2

您不小心将构造函数定义为方法。将签名更改为public MenuBar()(没有返回值),它应该可以工作。

public class MenuBar extends JMenuBar
{
    public MenuBar()
    {
        // constructor code
    }  
}
于 2013-05-31T10:28:35.037 回答