• 大小: 79KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-09
  • 语言: Java
  • 标签: 多线程  java月食  

资源简介

使用java多线程实现流星和月食的效果,带有详细的代码以及效果截图,代码完整且不存在错误可以共新手学习。

资源截图

代码片段和文件信息

package com.huke.moon.cn;
/**
 * 制作月食窗体
 */
import javax.swing.Jframe;

public class Moonframe extends Jframe{
MoonPanel moonPanel=new MoonPanel();
Moonframe(){
this.add(moonPanel);
this.setSize(1366 768);// 设置大小
this.setVisible(true);// 设置可视
this.setResizable(false);// 设置是否可以改变窗体大小
this.setLocationRelativeTo(null);// 设置居中
this.setDefaultCloseOperation(Jframe.EXIT_ON_CLOSE);// 设置关闭
//创建和启动线程
Thread t=new Thread(moonPanel);
t.start();
}
public static void main(String[] args) {
new Moonframe();

}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        302  2014-10-13 19:40  月食\.classpath

     文件        382  2014-10-13 19:40  月食\.project

     文件        598  2014-10-13 19:40  月食\.settings\org.eclipse.jdt.core.prefs

     文件        984  2014-10-13 19:56  月食\bin\com\huke\moon\cn\Moonframe.class

     文件       2037  2014-10-13 20:51  月食\bin\com\huke\moon\cn\MoonPanel.class

     文件        596  2014-10-13 19:56  月食\src\com\huke\moon\cn\Moonframe.java

     文件       1829  2014-10-13 20:51  月食\src\com\huke\moon\cn\MoonPanel.java

     文件      89071  2014-10-13 21:02  月食\效果图.jpg

     目录          0  2014-10-13 19:46  月食\bin\com\huke\moon\cn

     目录          0  2014-10-13 19:46  月食\src\com\huke\moon\cn

     目录          0  2014-10-13 19:41  月食\bin\com\huke\moon

     目录          0  2014-10-13 19:41  月食\src\com\huke\moon

     目录          0  2014-10-13 19:41  月食\bin\com\huke

     目录          0  2014-10-13 19:41  月食\src\com\huke

     目录          0  2014-10-13 19:41  月食\bin\com

     目录          0  2014-10-13 19:41  月食\src\com

     目录          0  2014-10-13 19:40  月食\.settings

     目录          0  2014-10-13 19:41  月食\bin

     目录          0  2014-10-13 19:41  月食\src

     目录          0  2014-10-13 21:04  月食

----------- ---------  ---------- -----  ----

                95799                    20


评论

共有 条评论