<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Chan Chen Coding...

    Understand TheadLocal

    Core concept of ThreadLocal is, “every thread that accesses a ThreadLocal variable via its get or set method has its own, independently initialized copy of the variable”. In this tutorial we will learn about ThreadLocal.
    ThreadLocal Introduction
    We want to have separate instances(private copy) of a class so that there will not be any conflict among multiple threads. Each instance will be unique for each thread. This is nothing but a way of implementing threadsafety.
    An important point about ThreadLocal variable is the global access. It can be accessed from anywhere inside the thread. Also note that, it is declared static and final.
    What is threadsafe?
    A thread is a single line of process. When we refer multi-threaded applications, we mean that there mulitple (sequential flow of control) line of process that runs through the same lines of code. In such situation, there is a possibility of one sequence(thread) accessing/modifying data of other sequence(thread). When data cannot be shared like this, then we make it threadsafe. Following are the some of the different ways of implementing threadsafe operation:
    1. Re-entrancy
    2. Mutual exclusion (synchronization)
    3. Thread-local
    4. Atomic operation
    So, in the above list Thread-local is one option. Hope now we get how ThreadLocal fits in the cube.
    Uses of ThreadLocal
    1. Genuine per-thread context, such as user id or transaction id. Works great. Easy to clean up when the thread exits the scope. No leaks.
    2. Per-thread instances for performance.
    3. “Sleazing” values through callbacks that you don’t control: sometimes you must call a library method that calls back into your package. At this point, you need some context that you were unable to pass to yourself, due to deficiencies in the library. In this rare situation, thread locals can be a lifesaver.
    Above points, in my own terms: We have an object that is not threadsafe and we want to use it safely. We go for synchronization by enclosing that object in synchronized block. Other way around is using ThreadSafe, what it does is holds separate instance for each thread and makes it safe.
     
    import java.text.SimpleDateFormat;
    import java.util.Date;
     
    public class ThreadLocalExample {
      private static final ThreadLocal formatter = new ThreadLocal() {
     
        protected SimpleDateFormat initialValue() {
          return new SimpleDateFormat("yyyyMMdd HHmm");
        }
      };
     
      public String formatIt(Date date) {
        return formatter.get().format(date);
      }
    }
    In the above sample code, get() method is key to understanding. It returns the value in the current thread’s copy of this thread-local variable. If the variable has no value for the current thread, it is first initialized to the value returned by an invocation of the initialValue method.
    Example from javadoc
    The class below generates unique identifiers local to each thread. A thread’s id is assigned the first time it invokes ThreadId.get() and remains unchanged on subsequent calls.
    import java.util.concurrent.atomic.AtomicInteger;
     
    public class ThreadId {
        // Atomic integer containing the next thread ID to be assigned
        private static final AtomicInteger nextId = new AtomicInteger(0);
     
        // Thread local variable containing each thread's ID
        private static final ThreadLocal threadId =
            new ThreadLocal() {
                @Override protected Integer initialValue() {
                    return nextId.getAndIncrement();
            }
        };
     
        // Returns the current thread's unique ID, assigning it if necessary
        public static int get() {
            return threadId.get();
        }
    }

    Use of ThreadLocal in Java API
    In JDK 1.7 we have got a new class namely ThreadLocalRandom. It can be used to generate random numbers specific to parallel threads. Seed for random number will be unique for each thread. This is a real cool utility.
    Following is the code that implements ThreadLocal in the above class:
    private static final ThreadLocal localRandom =
        new ThreadLocal() {
            protected ThreadLocalRandom initialValue() {
                return new ThreadLocalRandom();
            }
    };
    Example using ThreadLocalRandom
     
    import java.util.concurrent.ThreadLocalRandom;
     
    public class ThreadLocalRandomExample {
     
      public static void main(String args[]) throws InterruptedException {
     
        //tossing 3 coins
        for (int i = 0; i < 3; i++) {
          final Thread thread = new Thread() {
     
            public void run() {
              System.out.print(Thread.currentThread().getName() + ":");
     
              // generating 3 random numbers - random for every thread
              for (int j = 0; j < 3; j++) {
                final int random = ThreadLocalRandom.current().nextInt(
                    1, 3);
                System.out.print(random + ",");
              }
              System.out.println();
            }
          };
          thread.start();
          thread.join();
        }
      }
    }


    -----------------------------------------------------
    Silence, the way to avoid many problems;
    Smile, the way to solve many problems;

    posted on 2012-11-23 11:24 Chan Chen 閱讀(615) 評論(0)  編輯  收藏 所屬分類: Scala / Java

    主站蜘蛛池模板: 粉色视频成年免费人15次| 亚洲人成网站在线观看播放动漫| 国产亚洲精品美女2020久久| 久久久久久久91精品免费观看| 亚洲一级毛片免费在线观看| 久久精品一本到99热免费| 亚洲精品在线免费看| 99久久99久久精品免费看蜜桃 | 国产亚洲一卡2卡3卡4卡新区 | 91亚洲一区二区在线观看不卡| 你懂的免费在线观看网站| 亚洲AV无码日韩AV无码导航| 伊人久久免费视频| 亚洲国产成人手机在线电影bd| 成人免费视频77777| 亚洲欧美日韩国产精品一区| 国产传媒在线观看视频免费观看| 国产天堂亚洲精品| 亚洲香蕉网久久综合影视| 免费在线观看一级片| 国产精品亚洲精品观看不卡| 午夜一级免费视频| 国产免费久久精品丫丫| 亚洲乱亚洲乱淫久久| 在线jyzzjyzz免费视频| 无码人妻一区二区三区免费视频| 亚洲国产成人片在线观看| 青娱乐免费在线视频| 国产精品亚洲а∨无码播放麻豆 | 99视频在线免费观看| 亚洲美免无码中文字幕在线| 亚洲人成网站免费播放| 牛牛在线精品观看免费正| 亚洲成人激情在线| 在线精品免费视频无码的| 人妻免费久久久久久久了| 亚洲综合无码一区二区| 免费理论片51人人看电影| 成人av片无码免费天天看| 亚洲妇女熟BBW| 在线亚洲精品自拍|