- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
线程 月亮
java中,画一个月亮,最初在左下方,先慢慢沿45°上升,到顶时再慢慢沿45°下降到右下方。
浏览次数:327次悬赏分:0 | 解决时间:2010-11-29 08:41 | 提问者:綔罹
画一个月亮,最初在左下方,先慢慢沿45°上升,到顶时再慢慢沿45°下降到右下方。单击重复按钮,可以重复此过程。
最佳答案
import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.util.Timer;
import java.util.TimerTask;
import javax.swing.JButton;
import javax.swing.JFrame;
public class MoonTest extends JFrame {
public MoonTest() {
this.setSize(250, 250);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
start = new JButton(START);
start.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
start();
}
});
Dimension size = start.getPreferredSize();
start.setSize(size);
start.setLocation(120 - size.width / 2, 120);
this.setLayout(null);
this.add(start);
}
public void setVisible(boolean flag) {
super.setVisible(true);
start();
}
private void start() {
if (timer != null)
timer.cancel();
times = 0;
timer = new Timer();
task = new TimerTask() {
public void run() {
EventQueue.invokeLater(new Runnable() {
public void run() {
Graphics g = MoonTest.this.getGraphics();
if (g == null)
return;
paintComponents(g);
times++;
if (times = total) {
timer.cancel();
}
}
});
}
};
timer.schedule(task, period, period);
}
@Override
public void paintComponents(Graphics g) {
super.paintComponents(g);
double degree = Math.PI / (total - 1);
location = new Point(
(int) (-radio * Math.cos(degree * times) + center.x),
(int) (-radio * Math.sin(degree * times) + center.y));
Image moon = new Moon(15, Color.CYAN).getMoon();
g.drawImage(moon, location.x, location.y, this);
}
private JButton start;
private Point center = new Point(120, 120);
private Point location;
private int r
文档评论(0)