如何制作 java中画n(输入值)个大小位置都为随机的圆?

如题,期中n为输入值,直径和圆心均为随机产生.已知代码如下importjavax.swing.JComponent;importjava.awt.Graphics;imp... 如题,期中n为输入值, 直径和圆心均为随机产生.
已知代码如下

import javax.swing.JComponent;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.util.Random;

/**
A RandomCircleComponent draws a number of random circles.
*/
public class RandomCircleComponent extends JComponent
{
/**
Constructs a RandomCircleComponent that draws a given number
of circles.
@param n the number of circles to draw.
*/
public RandomCircleComponent(int n)
{
. . .
}
public void paintComponent(Graphics g)
{
. . .
}
. . .
}

过几天马上考试了,这题还完全弄不明白,请高手解答,谢谢
呵呵还是有些问题:
1,我们暂时不让用g.drawOval画,老师给出的范围是必须用 Ellipse2D.Double circles = new Ellipse2D.Double();g2.draw(circle);
2, 这个code只能在public RandomCircleComponent(int n) ,public void paintComponent(Graphics g) 还有最后面的private添加东西,其他的地方不能添加新code.
展开
 我来答
撒白风05F
2008-12-07 · TA获得超过1010个赞
知道小有建树答主
回答量:735
采纳率:0%
帮助的人:513万
展开全部
import java.awt.Color;
import java.awt.Graphics;
import java.util.Random;

import javax.swing.JComponent;
import javax.swing.JFrame;

/**
* A RandomCircleComponent draws a number of random circles.
*/
public class RandomCircleComponent extends JComponent {
private Color[] colors = {Color.red,Color.green,Color.black,Color.yellow,Color.cyan,Color.blue,Color.darkGray};
private int n;
private Random random = new Random();
public RandomCircleComponent(int n) {
this.n = n;
}

public void paintComponent(Graphics g) {
for(int i=0;i<n;i++){
int x = Math.abs(random.nextInt()%300);
int y = Math.abs(random.nextInt()%300);
int width = Math.abs(random.nextInt()%300);
g.setColor(colors[ Math.abs(random.nextInt()%6)]);
g.drawOval(x, y, width, width);
}
}
public static void main(String[] args){
int circlesNumber = 100;
JFrame jf = new JFrame("我的测试");
jf.add(new RandomCircleComponent(circlesNumber) );
jf.setSize(500,500);
jf.setVisible(true);
}

}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式