`
zhouyu260
  • 浏览: 10114 次
  • 性别: Icon_minigender_1
  • 来自: 重庆
社区版块
存档分类
最新评论

继承Thread类

    博客分类:
  • j2se
阅读更多
public class Example2_4 extends Thread{

	public static void main(String[] args) {
		//初始化线程
		Example2_4 e = new Example2_4();
		//启动线程
		e.start();
		System.out.println("----");
		try {
			for (int i = 0; i < 10; i++) {
				//延时1s
				Thread.sleep(1000);
				System.out.println("main:"+i);
			}
		} catch (Exception e2) {
			// TODO: handle exception                     
			
		}
	}
	
	
	public void run(){
		try {
			for (int i = 0; i < 10; i++) {
				//延时2s
				Thread.sleep(2000);
				System.out.println("run:"+i);
			}
		} catch (Exception e2) {
			// TODO: handle exception                                                            
		}
	}
}
             
1
1
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics