Home > Article > Backend Development > What makes `thread_local` variables unique in C 11?
Understanding 'thread_local' in C 11
In C 11, the 'thread_local' storage duration designates variables that are perceived as global or static within their respective functions. However, unlike true global or static variables, thread-local variables exist independently for each thread.
Each thread possesses its own instance of a thread-local variable, invisible to other threads. Modifications to a thread-local variable within one thread do not affect its value in other threads. This distinct per-thread behavior sets thread-local variables apart from global and static variables.
Examples of Thread-Local Variables
Consider several scenarios where thread-local variables prove beneficial:
Benefits of Thread-Local Variables
Thread-local storage duration offers several advantages:
The above is the detailed content of What makes `thread_local` variables unique in C 11?. For more information, please follow other related articles on the PHP Chinese website!