初期JAVA学习非常有用的资料。帮助深入了解API。特别是Applet。

源代码在线查看: problem.java

软件大小: 9606 K
上传用户: chengshengwu123
关键词: Applet JAVA API
下载地址: 免注册下载 普通下载 VIP

相关代码

				//1.3
				
				import java.util.*;
				
				public class Problem {
				    public static void main(String[] args) {
				        Timer timer = new Timer();
				        timer.schedule(new TimerTask() {
				                public void run() {
				                    System.out.println("Exiting.");
				                    timer.cancel();
				                }
				            },
				            5000);
				
				        System.out.println("In 5 seconds this application will exit. ");
				    }
				}
							

相关资源