我正在为学校制作一个Java小程序,其功能是随机选择六个数字作为三个点的坐标并将它们连接成一个三角形。它只应该绘制一个三角形并找到“边长”。但是,当我把它放在我的网站上时,它会多次重绘自己。
我制作了另一个更简单的小程序,它只选择 4 个随机数作为坐标来绘制一条线。同样的问题。
重绘问题似乎发生在用户移动屏幕时,例如当我滚动或在 Eclipse 中调整小程序查看器的大小时。我的源代码发布在这里。
我很感激任何帮助!谢谢!
import javax.swing.JApplet;
import java.awt.*;
@SuppressWarnings("serial")
public class LineApplet extends JApplet {
/**
* Create the applet.
*/
static int width;
int height;
public void init() {
width = getSize().width;
height = getSize().height;
}
public static int[] randomLine() {
int[] pointArray = new int[4];
int x;
for (int i = 0; i < 4; i++) {
x = ((int)(Math.random()*(width/10-2)))*20+10;
pointArray[i] = x;
}
return pointArray;
}
public void paint(Graphics g) {
g.setColor(Color.blue);
int[] coords = new int[4];
coords = randomLine();
g.drawLine(coords[0], coords[1], coords[2], coords[3]);
g.drawString(coords[0]/10 + ", " + coords[1]/10, coords[0], coords[1]);
g.drawString(coords[2]/10 + ", " + coords[3]/10, coords[2], coords[3]);
int midpointx = (coords[0] + coords[2])/2;
int midpointy = (coords[1] + coords[3])/2;
g.drawString(midpointx/10 + ", " + midpointy/10, midpointx, midpointy);
}
}