首页 > 编程语言 > 详细

传统线程互斥

时间:2017-06-29 23:37:13      阅读:393      评论:0      收藏:0      [点我收藏+]

传统线程的互斥技术:

关键字: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();

    }

  }


}

 

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

传统线程互斥

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!