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

【DAY8】关于多线程的练习

时间:2016-05-29 23:32:12      阅读:365      评论:0      收藏:0      [点我收藏+]

标签:多线程

一起来打游戏

class Player extends Thread
{
	private String name;
	private int sec;
	public Player(String name,int sec)
	{
		this.name=name;
		this.sec=sec;
	}
	public void run()
	{
		System.out.println("玩家"+name+"出发..");
		for(int a=0;a<30;a+=1)
		{
			System.out.print("→");
			try{
			Thread.sleep(100);
		    }
			catch(Exception e){ 
			e.printStackTrace();
			}
		}
		System.out.println();
		//yield();
		try{
			Thread.sleep(sec*1000);
		   }
		catch(Exception e){ 
		e.printStackTrace();
		}
		System.out.println("玩家"+name+"经过"+sec+"秒后抵达战场");
	}
}
class ThreadDoudizhu 
{
	public static void main (String[] args) throws Exception
	{
		Player p1=new Player("haha",1);
		Player p2=new Player("taotao",4);
		Player p3=new Player("xixi",6);
		Player p4=new Player("maomao",2);
		p1.start();
		p2.start();
		p3.start();
		p4.start();
		
		p1.join();
		p2.join();
		p3.join();
		p4.join();

		System.out.println();
		System.out.println("德玛西亚!!!!");
	}
}


本文出自 “yehomlab” 博客,转载请与作者联系!

【DAY8】关于多线程的练习

标签:多线程

原文地址:http://yehom.blog.51cto.com/5159116/1784244

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