A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

public class  ThreadTest
{
        public static void main(String [] args){
                int i = 100;
                ThreadAdd add = new ThreadAdd(i);
                ThreadCut cut = new ThreadCut(i);
                Thread t1 = new Thread(add);
                Thread t2 = new Thread(add);
                Thread t3 = new Thread(cut);
                Thread t4 = new Thread(cut);
                t1.start();
                t2.start();
                t3.start();
                t4.start();
        }
}

class ThreadAdd implements Runnable
{
        private int i;
        public ThreadAdd(int i){
                this.i = i;
        }
                Object  obj = new Object();
        public void run(){
                for(int j = 0;j<50;j++){
                        synchronized(obj){               
                                i++;
                        }
                        System.out.println(i);
                }
        }
}

class ThreadCut implements Runnable
{
        private int i;
        public ThreadCut(int i){
                this.i = i;
        }
        Object  obj = new Object();
        public void run(){
                for(int j = 0;j<50;j++){
                        synchronized(obj)        {               
                                i--;
                        }
                                System.out.println(i);
                }
        }
}

评分

参与人数 1技术分 +1 收起 理由
房宝彬 + 1

查看全部评分

8 个回复

倒序浏览
LZ感觉你这个思路有点乱,我给你写了个你看看对不。
  1. package test;


  2. public class  Lianxi
  3. {
  4.         public static void main(String [] args){
  5.                 Num add = new Num(true);
  6.                 Num cut = new Num(false);
  7.                 Thread t1 = new Thread(add);
  8.                 Thread t2 = new Thread(add);
  9.                 Thread t3 = new Thread(cut);
  10.                 Thread t4 = new Thread(cut);
  11.                 t1.start();
  12.                 t2.start();
  13.                 t3.start();
  14.                 t4.start();
  15.         }
  16. }

  17. class Num implements Runnable
  18. {
  19.         static int i = 100;
  20.         boolean flag = false;
  21.         public Num(boolean flag){
  22.                 this.flag = flag;
  23.         }
  24.         public void run(){
  25.                 if (flag) {
  26.                         for(int j = 0;j<50;j++){
  27.                         synchronized(Lianxi.class){               
  28.                                 i++;
  29.                                 System.out.println(Thread.currentThread().getName()+"----"+i);
  30.                                 }      
  31.                         }
  32.                 }
  33.                 if (!flag) {
  34.                         for(int j = 0;j<50;j++){
  35.                         synchronized(Lianxi.class){               
  36.                                 i--;
  37.                                 System.out.println(Thread.currentThread().getName()+"----"+i);  
  38.                                 }      
  39.                         }
  40.                 }
  41.                
  42.         }
  43.         
  44. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
房宝彬 + 1

查看全部评分

回复 使用道具 举报
基本类型的参数传递是把实际的值复制一份给另一个变量,你的程序中两个Runnable都通过构造函数传入参数,等于是有两份数据,线程执行的不是一份数据,如果你想操作同一份数据,这样做显然是不对的,
回复 使用道具 举报
周建 发表于 2012-3-20 21:13
基本类型的参数传递是把实际的值复制一份给另一个变量,你的程序中两个Runnable都通过构造函数传入参数,等 ...

好像是有一点   按照楼上同学的那样  设计应该是可以的  你觉得呢
回复 使用道具 举报
靠谱  ,莫非是高手?
回复 使用道具 举报
周建 发表于 2012-3-20 23:11
靠谱  ,莫非是高手?

只是有一点   它的int i  不应该设计成 static的了  这样声明周期太长了
回复 使用道具 举报
张锐 发表于 2012-3-20 20:01
LZ感觉你这个思路有点乱,我给你写了个你看看对不。

嗯ok  只是  int  i  这个最好别是静态的  我觉得就用 全局实例变量即可了, 你觉得呢?
回复 使用道具 举报
张锐 中级黑马 2012-3-21 08:13:49
8#
因为建了两个runnable,所以用static保证两个用的是一份数据。
回复 使用道具 举报
package Thread;

public class Tongbu{
    private int j;
    public static void main(String args[]){
            Tongbu tt=new Tongbu();
            //实例化俩个线程
            Inc inc=tt.new Inc();
            Dec dec=tt.new Dec();
            //启动线程
            for(int i=0;i<2;i++){  
                    Thread t=new Thread(inc);
                    t.start();
                    t=new Thread(dec);
                    t.start();
                    }
            }   
    //线程增
    private synchronized void inc(){
            j++;  
            System.out.println(Thread.currentThread().getName()+"-inc:"+j);
            }
    //纯种减
    private synchronized void dec(){
            j--;  
            System.out.println(Thread.currentThread().getName()+"-dec:"+j);
            }
//线程增
class Inc implements Runnable{
        public void run(){
                for(int i=0;i<100;i++){
                        inc();
                        }
                }
        }
//线程减
class Dec implements Runnable{
        public void run(){
                for(int i=0;i<100;i++){
                        dec();
                    }
                }
        }
}

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马