我必须从主类中调用小程序吗?

发布于 2024-12-11 22:50:00 字数 344 浏览 0 评论 0原文

我在 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 ?

enter image description here

the class containing the main method is automatically created when i start a new JApplet project in my netbeans IDE.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅紫色的梦幻 2024-12-18 22:50:00

您不能从具有 main 方法的类中调用小程序。 Applet 由浏览器加载。通过使用 main() 方法来调用应用程序。阅读Swing 教程。其中有以下部分:

  1. 如何制作小程序
  2. 如何制作框架

应该可以帮助您理解其中的区别。

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:

  1. How to Make Applets
  2. How to Make Frames

which should help you understand the difference.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文