zoukankan      html  css  js  c++  java
  • [20160804]synchronized

     1 class Timer{
     2    private static int num;
     3 
     4    void add(String name){
     5      //synchronized (this){
     6        num++;
     7        try{  Thread.sleep(1);  }
     8        catch(InterruptedException e){};
     9        System.out.println(name+"  you are the  "+num+"  user to use timer!");
    10      //}
    11    }
    12 }
    13 
    14 
    15 public class TestSync implements Runnable{
    16     Timer timer = new Timer();
    17 
    18     public static void main(String[] args) {
    19        TestSync t = new TestSync();
    20 
    21        Thread t1 = new Thread(t,"t1");
    22        Thread t2 = new Thread(t,"t2");
    23 
    24 
    25        t1.start();
    26        t2.start();
    27     }
    28 
    29     public void run(){
    30        timer.add(Thread.currentThread().getName());
    31     }
    32 }
  • 相关阅读:
    购物网站被p.egou.com强制恶意劫持
    css下拉菜单
    StringToInt
    JframeMaxSize
    frameMaxSize
    inputChar
    英语要求
    sciAndSubject
    fileRename
    tensorflowOnWindows
  • 原文地址:https://www.cnblogs.com/jasonzeng888/p/5736583.html
Copyright © 2011-2022 走看看