我的问题的例子:

我有一个主文件:

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()并在其中具有完全相同的代码,当我将其添加到框架中时会显示它,但是当我将其作为外部对象时,它就会显示出来没有。

我究竟做错了什么?

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

最佳答案

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

public class MenuBar extends JMenuBar
{
    public MenuBar()
    {
        // constructor code
    }
}

07-26 07:08