我在做一些阅读 通过太阳java教程, 我发现这个页面在这里:
在标题下, < strong> "Applets中的种子" strong> 我发现了这个代码:
//Background task for loading images.
SwingWorker worker = (new SwingWorker<ImageIcon[], Object>() {
public ImageIcon[] doInBackground() {
final ImageIcon[] innerImgs = new ImageIcon[nimgs];
...//Load all the images...
return imgs;
}
public void done() {
//Remove the "Loading images" label.
animator.removeAll();
loopslot = -1;
try {
imgs = get();
} ...//Handle possible exceptions
}
}).execute();
}
首先,我是新人,所以我很抱歉,如果这是一个愚蠢的问题。然而,我从来没有听说过这个“.excecute ()” 。 我不明白这一点,我无法从谷歌那里找到关于它的任何信息。 我看到这里是... 一个匿名的内科? (请纠正我), 它开始在图像中加载一个线。 我认为运行()的方法会被调用来启动()? 请帮助我澄清这个混乱 。