Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      atexit

      From cppreference.com
      <c‎ |program
       
       
      Program support utilities
      Program termination
      Unreachable control flow
      Communicating with the environment
      Memory alignment query
      Signals
      Signal types
      Non-local jumps
      Types
       
      Defined in header<stdlib.h>
      int atexit(void(*func)(void));

      Registers the function pointed to byfunc to be called on normal program termination (viaexit() or returning frommain()). The functions will be called in reverse order they were registered, i.e. the function registered last will be executed first.

      The same function may be registered more than once.

      The implementation is guaranteed to support the registration of at least32 functions. The exact limit is implementation-defined.

      Contents

      [edit]Parameters

      func - pointer to a function to be called on normal program termination

      [edit]Return value

      0 if the registration succeeds, nonzero value otherwise.

      [edit]Example

      Run this code
      #include <stdlib.h>#include <stdio.h> void f1(void){puts("f1");} void f2(void){puts("f2");} int main(void){if(! atexit(f1)&&! atexit(f2)&&! atexit(f2))returnEXIT_SUCCESS; // atexit registration failedreturnEXIT_FAILURE; }// <- if registration was successful calls f2, f2, f1

      Output:

      f2f2f1

      [edit]References

      • C17 standard (ISO/IEC 9899:2018):
      • 7.22.4.2 The atexit function (p: 255)
      • C11 standard (ISO/IEC 9899:2011):
      • 7.22.4.2 The atexit function (p: 350)
      • C99 standard (ISO/IEC 9899:1999):
      • 7.20.4.2 The atexit function (p: 315)
      • C89/C90 standard (ISO/IEC 9899:1990):
      • 7.10.4.2 The atexit function (p: 156)

      [edit]See also

      registers a function to be called onquick_exit invocation
      (function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/program/atexit&oldid=172244"

      [8]ページ先頭

      ©2009-2025 Movatter.jp