我知道这可能有点“基本”,但我看过每一个可能的教程,但他们没有告诉我。
问题1:
我正在尝试在JMenuBar中添加一个链接,我会怎样继续这样做?
问题2:
当我尝试向菜单栏添加内容时,它不会添加它。
我的所有导入都正确,我得到0错误,所以为什么不让我?
代码:
JFrame frame = new JFrame();
JMenuBar mb = new JMenuBar();
frame.setJMenuBar(mb);
JMenu file = new JMenu("File");
mb.add(file);