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

传统线程互斥

时间:2017-06-30 00:00:50      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:zha   art   reads   length   []   final   his   public   传统   

传统线程的互斥技术:

关键字:Synchronized

例子:

public class TraditionalThreadSynchronized {

  public static void main(String[] args) {
    new TraditionalThreadSynchronized().init();
  }

  private void init(){

    final Output output = new Output();

    new Thread(new Runnable(){

      @.....

      public void run(){

        while(true){

          try(){

            Thread.sleep(100);

          }catch(){

            e.printStrackTrace();

          }

          output.outputer("zhangsan");

        }

      }

    }).start();

 

    

    new Thread(new Runnable(){

      @.....

      public void run(){

        while(true){

          try(){

            Thread.sleep(100);

          }catch(){

            e.printStrackTrace();

          }

          output.outputer("zhangsan");

        }

      }

    }).start();

 

 

  }

  class Output{

    public void outputer(String name){

      int len = name.length();

      synchronized(this){

        for(int i = 0; i< len ; i ++){

          System.out.println(name.charAt(i));

        }

      }

      Syso();

    }

  }


}

 

//注:静态方法的锁是当前类的字节码。

传统线程互斥

标签:zha   art   reads   length   []   final   his   public   传统   

原文地址:http://www.cnblogs.com/hujiandesblogs/p/7096567.html

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