資源簡介
達內java編程訓練項目-飛機大戰

代碼片段和文件信息
package?com.tarena.shoot;
import?java.util.Random;
/**?敵機?:是飛行物?也是敵人??**/
public?class?Airplane?extends?Flyingobject?implements?Enemy{
private?int?speed?=?2;?//走步的步數
//構造方法
public?Airplane(){
image?=?ShootGame.airplane; //圖片
width?=?image.getWidth(); //寬
height?=?image.getHeight(); //高
Random?rand?=?new?Random(); //隨機數對象
x?=?rand.nextInt(ShootGame.WIDTH-this.width);//x:0到(窗口寬-敵機寬)之內的隨機數
y?=?-this.height; //y:負的敵機的高
}
//重寫getScore()
public?int?getScore(){
return?5;
}
//重寫step()
public?void?step(){
y+=speed;?//y+(向下)
}
//重寫outOfBounds
public?boolean?outOfBounds(){
return?this.y>=ShootGame.HEIGHT;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????301??2017-07-05?11:16??飛機大戰(終極版)\.classpath
?????文件????????383??2017-07-05?11:16??飛機大戰(終極版)\.project
?????文件????????598??2017-07-05?11:16??飛機大戰(終極版)\.settings\org.eclipse.jdt.core.prefs
?????文件???????1064??2017-07-25?10:43??飛機大戰(終極版)\bin\com\tarena\shoot\Airplane.class
?????文件???????3575??2014-11-14?21:29??飛機大戰(終極版)\bin\com\tarena\shoot\airplane.png
?????文件????????215??2017-07-25?10:43??飛機大戰(終極版)\bin\com\tarena\shoot\Award.class
?????文件??????26709??2014-11-14?21:29??飛機大戰(終極版)\bin\com\tarena\shoot\background.png
?????文件???????1201??2017-07-25?10:43??飛機大戰(終極版)\bin\com\tarena\shoot\Bee.class
?????文件???????6405??2014-11-14?21:29??飛機大戰(終極版)\bin\com\tarena\shoot\bee.png
?????文件????????868??2017-07-25?10:43??飛機大戰(終極版)\bin\com\tarena\shoot\Bullet.class
?????文件????????408??2014-11-14?21:29??飛機大戰(終極版)\bin\com\tarena\shoot\bullet.png
?????文件????????133??2017-07-25?10:43??飛機大戰(終極版)\bin\com\tarena\shoot\Enemy.class
?????文件????????892??2017-07-25?10:43??飛機大戰(終極版)\bin\com\tarena\shoot\Flyingob
?????文件??????20220??2014-11-14?21:29??飛機大戰(終極版)\bin\com\tarena\shoot\gameover.png
?????文件???????2345??2017-07-25?10:43??飛機大戰(終極版)\bin\com\tarena\shoot\Hero.class
?????文件??????12280??2014-11-14?21:29??飛機大戰(終極版)\bin\com\tarena\shoot\hero0.png
?????文件??????16243??2014-11-14?21:29??飛機大戰(終極版)\bin\com\tarena\shoot\hero1.png
?????文件??????14902??2014-11-14?21:29??飛機大戰(終極版)\bin\com\tarena\shoot\pause.png
?????文件???????1865??2017-07-25?10:43??飛機大戰(終極版)\bin\com\tarena\shoot\ShootGame$1.class
?????文件????????910??2017-07-25?10:43??飛機大戰(終極版)\bin\com\tarena\shoot\ShootGame$2.class
?????文件???????8598??2017-07-25?10:43??飛機大戰(終極版)\bin\com\tarena\shoot\ShootGame.class
?????文件??????43132??2014-11-14?21:29??飛機大戰(終極版)\bin\com\tarena\shoot\start.png
?????文件????????738??2017-07-07?13:03??飛機大戰(終極版)\src\com\tarena\shoot\Airplane.java
?????文件???????3575??2014-11-14?21:29??飛機大戰(終極版)\src\com\tarena\shoot\airplane.png
?????文件????????208??2017-07-05?14:39??飛機大戰(終極版)\src\com\tarena\shoot\Award.java
?????文件??????26709??2014-11-14?21:29??飛機大戰(終極版)\src\com\tarena\shoot\background.png
?????文件???????1075??2017-07-07?13:03??飛機大戰(終極版)\src\com\tarena\shoot\Bee.java
?????文件???????6405??2014-11-14?21:29??飛機大戰(終極版)\src\com\tarena\shoot\bee.png
?????文件????????578??2017-07-07?13:06??飛機大戰(終極版)\src\com\tarena\shoot\Bullet.java
?????文件????????408??2014-11-14?21:29??飛機大戰(終極版)\src\com\tarena\shoot\bullet.png
............此處省略22個文件信息
評論
共有 條評論