I want to know if functions registered with atexit()
are called before or after global variables are destroyed. Is this specified by the standard or implementation defined?
问题:
回答1:
It is well-defined, and depends on whether the object in question was constructed before or after the function got registered using atexit()
:
3.6.3 Termination
3. If the completion of the initialization of an object with static storage duration is sequenced before a call to
std::atexit
(see<cstdlib>
, 18.5), the call to the function passed tostd::atexit
is sequenced before the call to the destructor for the object. If a call tostd::atexit
is sequenced before the completion of the initialization of an object with static storage duration, the call to the destructor for the object is sequenced before the call to the function passed tostd::atexit
. If a call tostd::atexit
is sequenced before another call tostd::atexit
, the call to the function passed to the secondstd::atexit
call is sequenced before the call to the function passed to the firststd::atexit
call.
My layman's interpretation of the above is that stuff that got constructed before you called atexit(handler)
gets destroyed after handler()
is called, and vice versa. I am sure there are subtleties, but this seems to be the basic principle.