Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 net beans 制作了一个摆动 GUI,当我运行主项目时,GUI 没有出现。但是输出窗口显示构建成功。运行文件工作正常。可能有什么问题?提前致谢..
只是在这里猜测,但您是否真的创建了一个 GUI 实例,然后在某个方法中将其设置为可见,例如您的 main() 方法?
例如
MyGuiClass app = new MyGuiClass(); app.setVisible(true);