91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡(jiǎn)介

達(dá)內(nèi)私有課程java面向?qū)ο笳n程,飛機(jī)大戰(zhàn)項(xiàng)目,達(dá)內(nèi)飛機(jī)大戰(zhàn)素材包,包括所有代碼,達(dá)內(nèi)私有課程

資源截圖

代碼片段和文件信息

package?cn.tedu.shoot;
import?java.awt.image.BufferedImage;
/**?小敵機(jī):是飛行物,也是分?*/
public?class?Airplane?extends?Flyingobject?implements?Enemy?{
/*
?*?A:靜態(tài)變量,靜態(tài)塊賦值-----------最好的
?*???--第一次new對(duì)象(方法區(qū)分配images一份,靜態(tài)塊賦一次值)
?*???--以后new對(duì)象----什么也不做了
?*?B:實(shí)例變量,構(gòu)造中賦值
?*???--第一次new對(duì)象(堆中分配images,構(gòu)造中賦一次值)
?*???--第二次new對(duì)象(堆中分配images,構(gòu)造中賦一次值)
?*???--第三次new對(duì)象(堆中分配images,構(gòu)造中賦一次值)
?*?C:靜態(tài)變量,構(gòu)造中賦值
?*???--第一次new對(duì)象(方法區(qū)分配images一份,構(gòu)造中賦一次值)
?*???--第二次new對(duì)象(構(gòu)造中賦一次值)
?*???--第三次new對(duì)象(構(gòu)造中賦一次值)
?*/

private?static?BufferedImage[]?images;?//圖片
static{
images?=?new?BufferedImage[5];
for(int?i=0;i images[i]?=?loadImage(“airplane“+i+“.png“);
}
}

private?int?speed;?//移動(dòng)速度
/**?構(gòu)造方法?*/
public?Airplane(){
super(4936);
speed?=?2;
}

/**?重寫step()移動(dòng)?*/
public?void?step(){
y+=speed;?//y+(向下)
}

int?index?=?1;?//死了時(shí)的起始下標(biāo)
/**?重寫getImage()獲取圖片?*/
public?BufferedImage?getImage(){?//每10毫秒走一次
if(isLife()){?//若為活著的,則返回images[0]
return?images[0];
}else?if(isDead()){?//若為死了的
BufferedImage?img?=?images[index++];?//images[1]到images[4]
if(index==images.length){?//若到最后一張圖片了
state?=?REMOVE;?//將對(duì)象狀態(tài)修改為刪除狀態(tài)
}
return?img;
}
return?null;?//REMOVE狀態(tài)時(shí),返回null
/*
?*???????????????????index=1
?*?10M?img=images[1]?index=2??????????????????返回images[1]
?*?20M?img=images[2]?index=3??????????????????返回images[2]
?*?30M?img=images[3]?index=4??????????????????返回images[3]
?*?40M?img=images[4]?index=5(REMOVE)?返回images[4]
?*?50M?
?*/
}

/**?重寫getScore()得分?*/
public?int?getScore(){
return?1;?//打掉小敵機(jī),玩家得1分
}

}


















?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----

?????文件????????301??2018-10-13?14:47??MyShoot\.classpath

?????文件????????383??2018-10-13?14:47??MyShoot\.project

?????文件????????598??2018-10-13?14:47??MyShoot\.settings\org.eclipse.jdt.core.prefs

?????文件???????1467??2018-10-25?09:39??MyShoot\bin\cn\tedu\shoot\Airplane.class

?????文件???????3575??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\airplane0.png

?????文件???????2619??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\airplane1.png

?????文件???????2954??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\airplane2.png

?????文件???????4047??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\airplane3.png

?????文件???????1439??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\airplane4.png

?????文件????????217??2018-10-25?09:39??MyShoot\bin\cn\tedu\shoot\Award.class

?????文件??????26709??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\background.png

?????文件???????1742??2018-10-25?09:39??MyShoot\bin\cn\tedu\shoot\Bee.class

?????文件???????6405??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bee0.png

?????文件???????6416??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bee1.png

?????文件???????6428??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bee2.png

?????文件???????6404??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bee3.png

?????文件???????6367??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bee4.png

?????文件???????1476??2018-10-25?09:39??MyShoot\bin\cn\tedu\shoot\BigAirplane.class

?????文件???????6762??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bigplane0.png

?????文件???????7932??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bigplane1.png

?????文件???????8682??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bigplane2.png

?????文件???????9831??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bigplane3.png

?????文件???????2672??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bigplane4.png

?????文件???????1032??2018-10-25?09:39??MyShoot\bin\cn\tedu\shoot\Bullet.class

?????文件????????408??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\bullet.png

?????文件????????130??2018-10-25?09:39??MyShoot\bin\cn\tedu\shoot\Enemy.class

?????文件???????2559??2018-10-25?09:39??MyShoot\bin\cn\tedu\shoot\Flyingobject.class

?????文件??????20220??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\gameover.png

?????文件???????1951??2018-10-25?15:37??MyShoot\bin\cn\tedu\shoot\Hero.class

?????文件??????12280??2017-08-20?19:05??MyShoot\bin\cn\tedu\shoot\hero0.png

............此處省略52個(gè)文件信息

評(píng)論

共有 條評(píng)論

相關(guān)資源