javaSe-线程

package com.java.chap09.sec02;

public class Thread1 extends Thread{

private int baoZi=1;

private String threadName;

public Thread1(String threadName) {
super();
this.threadName = threadName;
}

@Override
public void run() {//重写run方法
while(baoZi<=10){
System.out.println(threadName+" 吃第"+baoZi+"个包子");
baoZi++;
}
}

public static void main(String[] args) {
// 张三 李四一起吃包子 每人吃10个
Thread1 t1=new Thread1("张三线程");//新建线程1
Thread1 t2=new Thread1("李四线程");//新建线程2

t1.start();//启动线程1
t2.start();//启动线程2
}




}

posted @ 2017-03-01 11:24  小拽A  阅读(106)  评论(0编辑  收藏  举报