我必须从主类中调用小程序吗?
我在 Netbeans IDE 中启动了一个新的 JApplet 项目。在选择一个新项目时,我选择了包含 JApplet 的 swing GUI 表单。项目初始化结束后,我看到一个主类
,即包含 main 方法的类。因为我必须为小程序进行设计,我选择了另一个 JApplet GUI 表单。现在如何从主类调用这个表单?当我使用小程序时,为什么会创建具有 main 方法的类?
当我在 netbeans IDE 中启动新的 JApplet 项目时,会自动创建包含 main 方法的类。
I started a new JApplet project in my Netbeans IDE . While selecting a new project i selected swing GUI forms that contained JApplet.After the project initialization was over i see a main class
i.e a class that contains the main method.Because i had to do the designing for the applet i selected another JApplet GUI form . Now how to call this form from the main class ? Why is the class with the main method created when i am working with the applets ?
the class containing the main method is automatically created when i start a new JApplet project in my netbeans IDE.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能从具有 main 方法的类中调用小程序。 Applet 由浏览器加载。通过使用 main() 方法来调用应用程序。阅读Swing 教程。其中有以下部分:
应该可以帮助您理解其中的区别。
You don't call applets from a class with a main method. Applets are loaded by a browser. Applications are invoked by using the main() method. Read the Swing Tutorial. There are sections on:
which should help you understand the difference.