问题
If I have a static local variable or thread_local local variable that is within an inline function that is defined in different translation units, in the final program are they guaranteed by the standard to have the same address?
// TU1:
inline int* f() { static int x; return &x; }
extern int* a;
void sa() { a = f(); }
// TU2:
inline int* f() { static int x; return &x; }
extern int* b;
void sb() { b = f(); }
// TU3:
int *a, *b;
void sa();
void sb();
int main() { sa(); sb(); return a == b; }
Will the above always return 1?
回答1:
Yes, it's always the same object. By [dcl.fct.spec]/4:
An
inlinefunction with external linkage shall have the same address in all translation units. Astaticlocal variable in anextern inlinefunction always refers to the same object. A type defined within the body of anextern inlinefunction is the same type in every translation unit.
来源:https://stackoverflow.com/questions/32172137/local-static-thread-local-variables-of-inline-functions