4.9w+
社区成员
public MyPanel(){
for(int i=0;i<300;i++){
x[i]=(int)(Math.random()*500);
y[i]=(int)(Math.random()*500);
}
}
import java.awt.*;
public class tests1 {
public static void main(String[] args) {
Frame w = new Frame();
w.setSize(500, 500);
w.setBackground(Color.BLACK);
MyPanel mp = new MyPanel();
//////////////////////////////////////////////
mp.Mypanel();/////////////////////////////////
/////////////////////////////////////////////
w.add(mp);
Thread t = new Thread(mp);
t.start();
w.show();
}