我使用的WindowBuilder为Eclipse的Java。
当我做一个按钮或菜单(或任何东西),它会创建嵌套的构造函数中的字段。 有没有什么办法让他们字段,然后在构造函数初始化,这样我就可以使用它们的构造之外? 谢谢。
即:从
public GUIFrame() {
JMenuBar menuBar = new JMenuBar();
}
至
public JMenuBar menubar;
public GUIFrame() {
menuBar = new JMenuBar();
}