<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

    主站蜘蛛池模板: 久久亚洲高清综合| 亚洲精品无码av天堂| 亚洲美女自拍视频| 久久国产精品一区免费下载| 亚洲女同成av人片在线观看| 两个人的视频www免费| 国产亚洲av人片在线观看| 好吊色永久免费视频大全| 夜夜春亚洲嫩草影院| 免费播放在线日本感人片| 久久久久亚洲av无码专区蜜芽| 午夜免费啪视频在线观看 | 国产成人亚洲综合| 国产区图片区小说区亚洲区| 亚洲免费视频网址| 亚洲视频一区二区在线观看| 日本免费一本天堂在线| 亚洲国产精品激情在线观看| 阿v免费在线观看| 在线亚洲人成电影网站色www| 久久免费美女视频| 亚洲精品国产手机| 日韩电影免费在线| 巨胸狂喷奶水视频www网站免费| 亚洲大片在线观看| 日韩av无码成人无码免费| 色噜噜狠狠色综合免费视频 | 特级毛片全部免费播放| 亚洲亚洲人成综合网络| 亚洲一区二区三区免费在线观看| 亚洲综合av一区二区三区| 国产亚洲色视频在线| 免费在线观看h片| 黄色大片免费网站| 亚洲大片在线观看| 国产免费久久精品| 日韩成人免费视频| 337P日本欧洲亚洲大胆精品| 久久亚洲国产中v天仙www| 日韩精品无码区免费专区| 国产黄片不卡免费|