用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - java代码库

画图(闪烁的星星和月亮)

2017-03-16 作者: 道高一尺举报

[java]代码库

import java.awt.*;

public class web // 一个类中只能有一个公有的类
{
	public static void main(String[] args) {
		Frame w = new Frame();// 建立一个窗体的对象
		w.setSize(1024, 768);// 设置窗体大小
		w.setBackground(Color.BLACK);// 设置窗体背景颜色
		MyPanel mp = new MyPanel();//
		w.add(mp);
		w.show();

	}
}

class MyPanel extends Panel // panel为父类,MyPanel为子类
{
	public void paint(Graphics g) {// paint 叫做方法,Graphics是类,g是对象
		g.setColor(Color.WHITE); // 设置对象的颜色
		g.fillOval(30, 40, 200, 200);

		for (int i = 0; i < 300; i++) {
			
			g.drawString("*", (int) (Math.random() * 1024), (int) (Math.random() * 768));
			int c1, c2, c3;
			c1 = (int) (Math.random() * 255);
			c2 = (int) (Math.random() * 255);
			c3 = (int) (Math.random() * 255);

			Color c = new Color(c1, c2, c3);
			g.setColor(c);
		}
		g.setColor(Color.BLACK);
		g.fillOval(50, 40, 200, 200);
	}
}

[代码运行效果截图]


画图(闪烁的星星和月亮)


网友评论    (发表评论)

共1 条评论 1/1页

发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...