⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 coutdown.java

📁 一个经典的手机游戏原代码
💻 JAVA
字号:
import java.util.TimerTask;import javax.microedition.lcdui.Canvas;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class coutDown extends TimerTask {  public static final int TASK_SPLASH = 0;  private splashScreen splash;  int taskType;  public coutDown(splashScreen splash) {    this.splash = splash;    this.taskType = TASK_SPLASH;  }  public void run() {    /**@todo Implement this java.lang.Runnable abstract method*/    switch(taskType) {      case TASK_SPLASH:        splashScreen.access(this.splash);        break;    }  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -