码迷,mamicode.com
首页 > 编程语言 > 详细

画坦克__线程__V1__第一种方法创造线程

时间:2017-10-06 23:13:46      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:super   blog   getname   try   string   ini   catch   star   cep   

一、代码如下

package www.tainiu.gui__V2;

public class aa__XianCheng__V1 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Cat cat1= new Cat();
		Cat cat2= new Cat();
		cat1.start();
		cat2.start();

	}

}



class Cat extends Thread{
	int times= 0;
	@Override
	public void run() {
		// TODO Auto-generated method stub
		super.run();
		while(true) {
			try {Thread.sleep(1000);} catch (InterruptedException e) {e.printStackTrace();}
			times ++;
			System.out.println("Hello World__"+times+this.getName());
			if(times == 10) {
				break;
			}
		}
		
		
	}
}

 

画坦克__线程__V1__第一种方法创造线程

标签:super   blog   getname   try   string   ini   catch   star   cep   

原文地址:http://www.cnblogs.com/wujianbo123/p/7633092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!