<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 閱讀(619) 評論(0)  編輯  收藏 所屬分類: Scala / Java

    主站蜘蛛池模板: 乱淫片免费影院观看| 亚洲精品福利你懂| fc2成年免费共享视频网站| 国产成人青青热久免费精品| 亚洲一线产区二线产区区| 97免费人妻无码视频| 亚洲成人在线免费观看| 亚洲精品视频在线观看免费| 亚洲综合一区二区| 亚洲成在人线aⅴ免费毛片| 亚洲人成电影网站久久| 精品国产一区二区三区免费看| 亚洲中文字幕乱码熟女在线| 好吊妞在线成人免费| 男性gay黄免费网站| 久久精品夜色噜噜亚洲A∨| 美女羞羞喷液视频免费| 亚洲国产午夜中文字幕精品黄网站| 青青草97国产精品免费观看| 自拍偷自拍亚洲精品情侣| 国产免费爽爽视频在线观看| 亚洲国产综合91精品麻豆| 国产成人精品免费视频动漫| 在线观看亚洲AV每日更新无码 | 99精品视频在线视频免费观看| 精品亚洲A∨无码一区二区三区| 午夜免费1000部| 亚洲av无码一区二区三区天堂 | 亚洲乱亚洲乱妇无码| 国产成人免费片在线观看| AAAAA级少妇高潮大片免费看| 水蜜桃亚洲一二三四在线| 日韩欧毛片免费视频 | 久久九九AV免费精品| 77777午夜亚洲| 精品亚洲成α人无码成α在线观看| 久久免费精品视频| 亚洲中文字幕一二三四区| 久久久久亚洲AV成人网| 1a级毛片免费观看| 日本高清免费中文在线看|