码迷,mamicode.com
首页 > 编程语言 > 详细

创建4个线程,两个对j加一,两个对j减一(j两同两内)

时间:2017-08-26 13:41:01      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:sync   run   private   read   nts   启动   current   string   ring   

package multithread;

public class MyThread {
    //j变量私有
    private int j;
    //同步的+1方法
    private synchronized void add(){
        j++;
        System.out.println(Thread.currentThread().getName()+"----------> "+j);
    }
    //同步的-1方法
    private synchronized void subtract(){
        j--;
        System.out.println(Thread.currentThread().getName()+"----------> "+j);
    }
    //实现Runnable接口的内部加类
    class Add implements Runnable{

        @Override
        public void run() {
            for (int i = 0; i < 100; i++) {
                add();
            }
        }
    }
    //实现Runnable接口的内部减类
    class Subtract implements Runnable{
        
        @Override
        public void run() {
            for (int i = 0; i < 100; i++) {
                subtract();
            }
        }
    }
    
    public static void main(String[] args) {
        //创建外部类和内部类的实例
        MyThread mt = new MyThread();
        Add add = mt.new Add();
        Subtract subtract = mt.new Subtract();
        //循环启动4个线程
        for (int i = 0; i < 2; i++) {
            Thread t = new Thread(add);
            t.start();
            t = new Thread(subtract);
            t.start();
        }
    }
}

 

创建4个线程,两个对j加一,两个对j减一(j两同两内)

标签:sync   run   private   read   nts   启动   current   string   ring   

原文地址:http://www.cnblogs.com/lxcmyf/p/7435047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!