标签:线程
调用start(),则编译器开始执行run();
Tread()类:
public class Test extends Thread{
private int tickets = 100;
public void run(){
while(tickets>0){
System.out.println("卖出第"+tickets--+"票");
}
}
public static void main(String[] args){
new Test().start();
}
}
数据结果:
卖出第17票
卖出第16票
卖出第15票
卖出第14票
卖出第13票
卖出第12票
卖出第11票
卖出第10票
卖出第9票
卖出第8票
卖出第7票
卖出第6票
卖出第5票
卖出第4票
卖出第3票
卖出第2票
卖出第1票
Runnable:
public class Test implements Runnable{
private int tickets = 100;
public void run(){
while(tickets>0){
System.out.println("卖出第"+tickets--+"票");
}
}
public static void main(String[] args){
Runnable runnable = new Test();
new Thread(runnable).start();
}
}
结果一样
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:线程
原文地址:http://blog.csdn.net/u011169733/article/details/47754485