在java中 怎么让两个子线程对同一数据进行操作 5
1个回答
展开全部
class Demo implements Runnable{
private int p=10;
public void run(){
while (this.p>0){
try{
Thread.sleep(1000);//线程睡眠1000毫秒
}catch(Exception e){
}
System.out.println(Thread.currentThread().getName()+"卖票"+this.p--);
}
}
}
public class Mythread01{
public static void main(String[] args){
Demo d=new Demo();
Thread t1=new Thread(d,"线程1");//创建线程对象时候并且取名
Thread t2=new Thread(d,"线程2");
t1.start();
t2.start();
}
}
private int p=10;
public void run(){
while (this.p>0){
try{
Thread.sleep(1000);//线程睡眠1000毫秒
}catch(Exception e){
}
System.out.println(Thread.currentThread().getName()+"卖票"+this.p--);
}
}
}
public class Mythread01{
public static void main(String[] args){
Demo d=new Demo();
Thread t1=new Thread(d,"线程1");//创建线程对象时候并且取名
Thread t2=new Thread(d,"线程2");
t1.start();
t2.start();
}
}
追问
怎么让其中一个线程对数据做递增操作 另一个做递减操作呢???
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |