所以我正在阅读'思考java'一书,我遇到了ColorBox程序,随意改变了盒子的颜色。但是我注意到运行此代码时出现问题,就好像没有run()方法一样。
我在下面用“/ HERE /”强调了它:)
import javax.swing.*;
import java.awt.*;
import java.util.concurrent.*;
import java.util.*;
import static sun.misc.PostVMInitHook.run;
class CBox extends JPanel implements Runnable {
private int pause;
private static Random rand = new Random();
private Color color = new Color(0);
public void paintComponent(Graphics g) {
g.setColor(color);
Dimension s = getSize();
g.fillRect(0, 0, s.width, s.height);
}
public CBox(int pause) { this.pause = pause; }
public void run() {
try {
while(!Thread.interrupted()) {
color = new Color(rand.nextInt(0xFFFFFF));
repaint(); // Asynchronously request a paint()
TimeUnit.MILLISECONDS.sleep(pause);
}
} catch(InterruptedException e) {
// Acceptable way to exit
}
}
}
public class ColorBoxes extends JFrame {
private int grid = 12;
private int pause = 50;
private static ExecutorService exec =
Executors.newCachedThreadPool();
public void setUp() {
setLayout(new GridLayout(grid, grid));
for(int i = 0; i < grid * grid; i++) {
CBox cb = new CBox(pause);
add(cb);
exec.execute(cb);
}
}
public static void main(String[] args) {
ColorBoxes boxes = new ColorBoxes();
if(args.length > 0)
boxes.grid = new Integer(args[0]);
if(args.length > 1)
boxes.pause = new Integer(args[1]);
boxes.setUp();
/**HERE**/ run(boxes, 500,400);
}
}
我没有做任何改变,这是书中的确切代码。他们希望改进以前的版本,包括JApplet,并且有类似的方法:
public static void run(JApplet applet, int width, int height) {
....
}
答案 0 :(得分:2)
魔鬼在细节中
import static sun.misc.PostVMInitHook.run;
这样您就可以拨打run()
。
虽然不是很好,因为它使用的是sun.*
个套餐,而且您不需要这样做就可以让您的程序正常运行。可能是过去的遗留物。
更常用的风格是
SwingUtilities.invokeLater(() -> {
boxes.setSize(500, 400);
boxes.setVisible(true);
});