在 Main() 中调用一个类

发布于 2024-10-11 03:31:50 字数 303 浏览 2 评论 0原文

我编写了一个小程序类,不包含 main()。 有没有可能的方法让我将整个类传递给 main 来运行它,因为我无法通过 main 调用所有方法,我只是使用了很多东西这是不可能的。

public static void main(String[] args){ }
public class Travel extends Applet implements MouseListener{
}

小程序似乎不运行 main()

I have written a class that is an applet and doesn't contain a main().
Is there any possible way for me to just pass the entire class to main to run it because I can't call all the methods through main, I just use so many things it's impossible.

public static void main(String[] args){ }
public class Travel extends Applet implements MouseListener{
}

It seems Applets don't run main().

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

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

发布评论

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

评论(2

转角预定愛 2024-10-18 03:31:50

这个混合演示不仅可以作为小程序或应用程序运行,还可以直接从命令启动使用小程序查看器中的源代码行。

EG

prompt> javac HybridApplet.java
prompt> java HybridApplication // Note the 'Application'
prompt> appletviewer HybridApplet.java // Note the '.java'

在浏览器中退出小程序应重定向到源。它在小程序查看器中不会产生任何影响。 Applet 查看器不支持 showDocument(),这与 Appleteer 不同,后者支持 ;)。


编辑:但请注意,许多设计为小程序的东西都利用方法和方法。对小程序有用的类 - getClip()、getDocumentBase()...

这些是为了方便起见,并且大多数在其他非小程序类中具有等效项。

This hybrid demo can not only be run as either an applet or application, but be launched direct from the command line using the source in the applet viewer.

E.G.

prompt> javac HybridApplet.java
prompt> java HybridApplication // Note the 'Application'
prompt> appletviewer HybridApplet.java // Note the '.java'

Exiting the applet in the browser should redirect to the source. It will have no effect in the applet viewer. Applet viewer does not support showDocument(), unlike Appleteer, which does ;).


Edit: Note though, that many things designed as applets leverage methods & classes useful to applets - getClip(), getDocumentBase()..

These are for convenience and mostly have equivalents in other non-applet classes.

冬天旳寂寞 2024-10-18 03:31:50

在小程序类中创建一个 main 方法,并在 main 方法中实例化它。
如果您确实想运行该小程序,我建议使用 小程序查看器

Create a main method in your applet class and instantiate it from within the main method.
If you really want to run the applet though, I suggest using the appletviewer

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