If you mean InheritableThreadLocal (extension ThreadLocal), then yes, each child thread will have an initial default value so that it is the same as the value of the parent thread. But any changes to the child stream will be local to the child.
InheritableThreadLocal doc
source
share