本程序是用多线程实现了打飞鸟游戏程序

源代码在线查看: bullet.java

软件大小: 747 K
上传用户: a956303013
关键词: 程序 多线程 游戏程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*
				 * bullet.java
				 *
				 * Created on 2007年12月28日, 下午2:19
				 *
				 * To change this template, choose Tools | Template Manager
				 * and open the template in the editor.
				 */
				
				package shoot_birds;
				
				/**
				 *
				 * @author open
				 * 子弹类
				 * 主要用于子弹计数,初始值为100
				 * 这里用到单身设计模式
				 */
				class Bullet {
				    
				   
				    private  Bullet() {//构造器是私有的
				    }
				    public static Bullet getInstance()//得到单身模式的实例
				    {
				        if(bullet==null)
				            bullet=new Bullet();
				        return bullet;
				    }
				    //得到子弹的数目
				    public int getNum()
				    {
				        return num;
				    }
				    //射击的时候,也就是鼠标单击,子弹数目减减
				    public void setNum()
				    {
				        num--;
				    }
				    private static Bullet bullet;
				    private int num=100;
				}
							

相关资源