多线程-InheritableThreadLocal

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多线程-InheritableThreadLocal相关的知识,希望对你有一定的参考价值。

InheritableThreadLocal可以在子线程中取得父线程继承下来的值,即可以让子线程从父进程中取得值。

package org.github.lujiango;

public class Test04 {
    static InheritableThreadLocal<String> itl = new InheritableThreadLocal<String>();

    static class ThreadA extends Thread {
        @Override
        public void run() {
            try {
                System.out.println("ThreadA get: " + itl.get());
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    public static void main(String[] args) {

        try {
            itl.set("Main");
            Thread.sleep(1000);
            ThreadA a = new ThreadA();
            a.start();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

  InheritableThreadLocal即可以设置默认值,也可以在继承父线程值的同时修改。

package org.github.lujiango;

class InheritableThreadLocalExt extends InheritableThreadLocal<String> {
    @Override
    protected String initialValue() {
        return "defalut";
    }

    @Override
    protected String childValue(String parentValue) {
        return parentValue + " child";
    }
}

public class Test04 {
    static InheritableThreadLocalExt itl = new InheritableThreadLocalExt();

    static class ThreadA extends Thread {
        @Override
        public void run() {
            try {
                Thread.sleep(1000);
                System.out.println("ThreadA get: " + itl.get());
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    public static void main(String[] args) {

        try {
            System.out.println(itl.get());
            itl.set("Main1");
            Thread.sleep(1000);
            ThreadA a = new ThreadA();
            a.start();
            itl.set("Main2");
            System.out.println(itl.get());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

注:如果子线程在取得值得同时,主线程将InheritableThreadLocal中的值进行更改,那么子线程取到的值还是旧值。

以上是关于多线程-InheritableThreadLocal的主要内容,如果未能解决你的问题,请参考以下文章

什么是多线程,多进程?

多线程和多进程模式有啥区别

多线程Java多线程学习笔记 | 多线程基础知识

java中啥叫做线程?啥叫多线程?多线程的特点是啥

c++ 多线程与c多线程有啥区别?

IOS多线程安全(线程锁)