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

java之线程

时间:2014-10-30 18:36:34      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:ar   使用   java   for   art   ad   new   as   tt   

package Map;

public class test {
public static void main(String args[]){
/* new TestThread().start();*/
/* TestThread t =new TestThread();
new Thread(t).start(); */ /*由于Runnable只有Run方法,所以必须调用Thread的start方法*/
/*for(int i=0;i<10;i++)
{
System.out.println("main 线程在运行"+i);
} */
/*启动了4个线程,各自使用自己的资源,没有达到资源共享的目的*/
/*new TestThread().start();
new TestThread().start();
new TestThread().start();
new TestThread().start(); */
TestThread t = new TestThread();
new Thread(t).start();
new Thread(t).start();
new Thread(t).start();
new Thread(t).start();
}

}
class TestThread implements Runnable
{
private int tickets = 20;
public void run()
{
while(true)
{
if(tickets>0)
{
System.out.println(Thread.currentThread().getName()+"出售票"+tickets--);
}
}
}
}
/*
class TestThread extends Thread
{
private int tickets = 20;
public void run()
{
while(true)
{
if(tickets>0)
{
System.out.println(Thread.currentThread().getName()+"出售票"+tickets--);
}
}
}
}*/
/*通过Runnable接口实现多线程*/
/*class TestThread implements Runnable
{
public void run()
{
for(int i=0;i<10;i++)
{
System.out.println("TestThread 在运行。"+i);
}
}
}
*/
/*
class TestThread extends Thread
{
public void run()
{
for(int i=0;i<10;i++)
{
System.out.println("TestThread 在运行。"+i);
}
}
}
*/

java之线程

标签:ar   使用   java   for   art   ad   new   as   tt   

原文地址:http://www.cnblogs.com/batman425/p/4063158.html

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