在 Main() 中调用一个类
我编写了一个小程序类,不包含 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个混合演示不仅可以作为小程序或应用程序运行,还可以直接从命令启动使用小程序查看器中的源代码行。
EG
在浏览器中退出小程序应重定向到源。它在小程序查看器中不会产生任何影响。 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.
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.
在小程序类中创建一个 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