假设我有类似的东西:
Applet myApplet = new MyApplet();
如何以出现新窗口的方式调用该applet,仍然可以从该范围访问该MyApplet实例?
通常,我希望能够编写如下代码:
class Runner {
public static void main(String[] args) {
new Runner().run();
}
void run() {
MyApplet myApplet = new MyApplet();
myApplet.init();
myApplet.doSomething();
}
}
我该怎么做?
最佳答案
在其他地方(例如,在http://www.dreamincode.net/code/snippet1607.html处)可以回答此问题。
我通过找到了
https://www.google.ru/search?q=java+applet+%22as+application%22