C语言的构造函数与析构函数

__attribute__((constructor))  与 __attribute__((destructor))

#include 

void _init(void)__attribute__((constructor));
void _fini(void)__attribute__((destructor));

void _init(void)
{
	printf("constructor\n");;
} 
void _fini(void)
{
	printf("destructor\n");;
} 

int main()
{  
	printf("main\n");
	return 0;
}    

 

你可能感兴趣的:(C语言实例)