| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 990 人关注过本帖
标题:有关多线程
取消只看楼主 加入收藏
angelnana
Rank: 1
等 级:新手上路
帖 子:178
专家分:0
注 册:2007-8-13
收藏
 问题点数:0 回复次数:2 
有关多线程

题目:设计4个线程,其中两个线程每次对j增加1,另外两个线程对j每次减少1
问题:我的程序出来的答案是错的,帮我修改一下,谢谢
代码:
package phrase3;
class tongbu{
private boolean available=false;
synchronized void plus(){
while(available==true)
try{
wait();
}catch(InterruptedException e){}
available=true;
notify();
}
synchronized void minus(){
while(available==false)
try{
wait();
}catch(InterruptedException e){}
available=false;
notify();
}
}

class Plus extends Thread{
private tongbu tb;
int num=0;
public Plus(tongbu thistb){
tb=thistb;
}
public void run(){
for(int i=0;i<100;i++){
num+=1;
System.out.println("the num plus:"+num);
tb.plus();
}
}
}
class Minus extends Thread{
private tongbu tb;
int num=0;
public Minus(tongbu thistb){
tb=thistb;
}
public void run(){
for(int i=0;i<100;i++){
num-=1;
System.out.println("the num minus:"+num);
tb.plus();
}
}
}

//class Minus implements Runnable{
// private tongbu tb;
// int num=0;
// public Minus(tongbu thistb){
// tb=thistb;
// }
// public void run() {
// for(int i=0;i<100;i++){
// num-=1;
// System.out.println("the num minus:"+num);
// tb.plus();
// }
// }
//
//}

public class MyThread {
public static void main(String args[]){
tongbu tb=new tongbu();
Plus p1=new Plus(tb);
Plus p2=new Plus(tb);
Minus m1=new Minus(tb);
Minus m2=new Minus(tb);
Thread t1=new Thread(m1);
Thread t2=new Thread(m2);
p1.start();
p2.start();
t1.start();
t2.start();
}
}

搜索更多相关主题的帖子: 线程 
2007-08-16 17:14
angelnana
Rank: 1
等 级:新手上路
帖 子:178
专家分:0
注 册:2007-8-13
收藏
得分:0 
无理取闹说的正中要害,谢谢啦

2007-08-20 14:40
angelnana
Rank: 1
等 级:新手上路
帖 子:178
专家分:0
注 册:2007-8-13
收藏
得分:0 
回复:(huwangvs)class tongbu{ static int num=...
你的方法我明白了,但是有个问题,我想要得结果是在数0,1,2之间,也就是说必须做完两次加后做两次减,做完这两次减后再做两次加,可以做到吗?谢谢

2007-08-20 14:47
快速回复:有关多线程
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.021942 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved