资源简介

java打飞机项目,用纯java代码编写,包含项目所需的全部图片资源。注释齐全,简单易学,是学习java基础后的一个全面系统的练习性项目。不可错过。

资源截图

代码片段和文件信息

package 打飞机;

public class Airplane extends Flyingobject implements Enemy{
    protected int speed=2;
    public Airplane(){
     image=shootgame.airplane;
     width=image.getWidth();
     height=image.getHeight();
     y=height;
     x=(int)(Math.random()*(shootgame.width-width));
    }
    
    public int getscore() {
     return 10;
    }
    
    public void step() {
     y+=speed;
    }
    
    public boolean outofBounds() {
     return y>shootgame.height;
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-07-09 15:00  02_shoot1\
     文件         301  2018-02-26 08:55  02_shoot1\.classpath
     文件         385  2018-06-23 19:04  02_shoot1\.project
     目录           0  2018-07-09 15:00  02_shoot1\.settings\
     文件         598  2018-02-26 08:55  02_shoot1\.settings\org.eclipse.jdt.core.prefs
     目录           0  2018-07-09 15:00  02_shoot1\bin\
     目录           0  2018-07-09 15:00  02_shoot1\bin\打飞机\
     文件         982  2018-06-23 19:33  02_shoot1\bin\打飞机\Airplane.class
     文件        3575  2018-02-26 09:28  02_shoot1\bin\打飞机\airplane.png
     文件         207  2018-06-23 19:33  02_shoot1\bin\打飞机\Award.class
     文件       28052  2018-02-26 12:04  02_shoot1\bin\打飞机\background.png
     文件        1128  2018-06-23 19:33  02_shoot1\bin\打飞机\Bee.class
     文件        6405  2018-02-26 09:28  02_shoot1\bin\打飞机\bee.png
     文件         840  2018-06-23 19:33  02_shoot1\bin\打飞机\Bullet.class
     文件        3087  2018-02-26 12:04  02_shoot1\bin\打飞机\bullet.png
     文件         126  2018-06-23 19:33  02_shoot1\bin\打飞机\Enemy.class
     文件         752  2018-06-23 19:33  02_shoot1\bin\打飞机\Flyingobject.class
     文件       22447  2018-02-26 09:28  02_shoot1\bin\打飞机\gameover.png
     文件        2208  2018-06-23 19:33  02_shoot1\bin\打飞机\hero.class
     文件       12280  2018-02-26 09:28  02_shoot1\bin\打飞机\hero0.png
     文件       16243  2018-02-26 09:28  02_shoot1\bin\打飞机\hero1.png
     文件       17082  2018-02-26 09:28  02_shoot1\bin\打飞机\pause.png
     文件        1601  2018-06-23 19:33  02_shoot1\bin\打飞机\shootgame$1.class
     文件         862  2018-06-23 19:33  02_shoot1\bin\打飞机\shootgame$2.class
     文件        8048  2018-06-23 19:33  02_shoot1\bin\打飞机\shootgame.class
     文件       26274  2018-02-26 09:28  02_shoot1\bin\打飞机\start.png
     目录           0  2018-07-09 15:00  02_shoot1\src\
     目录           0  2018-07-09 15:00  02_shoot1\src\打飞机\
     文件         503  2018-03-02 19:51  02_shoot1\src\打飞机\Airplane.java
     文件        3575  2018-02-26 09:28  02_shoot1\src\打飞机\airplane.png
     文件          95  2018-02-27 19:12  02_shoot1\src\打飞机\Award.java
............此处省略14个文件信息

评论

共有 条评论